美文网首页Angular
Angular 安全相关

Angular 安全相关

作者: 浅忆_0810 | 来源:发表于2021-03-17 20:01 被阅读0次

    1. 使用 html 管道 和bypassSecurityTrustHtml() 来规避 angular的脚本净化

    const html = `<div style="color: #0067ff">Hello World!</div>`
    
    <p [innerHTML]="html | html"></p>
    
    ng g p pipes/html --skip-test
    
    // pipes/html.pipe.ts
    import { Pipe, PipeTransform } from '@angular/core';
    import { DomSanitizer } from '@angular/platform-browser';
    
    @Pipe({
      name: 'html'
    })
    export class HtmlPipe implements PipeTransform {
      constructor(private sanitizer: DomSanitizer) {}
    
      transform(style: any) {
        // 对传入的 html 绕过安全检查
        return this.sanitizer.bypassSecurityTrustHtml(style);
      }
    }
    

    相关文章

      网友评论

        本文标题:Angular 安全相关

        本文链接:https://www.haomeiwen.com/subject/ljnecltx.html