当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript platform-browser.DomSanitizationService类代码示例

本文整理汇总了TypeScript中@angular/platform-browser.DomSanitizationService的典型用法代码示例。如果您正苦于以下问题:TypeScript DomSanitizationService类的具体用法?TypeScript DomSanitizationService怎么用?TypeScript DomSanitizationService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了DomSanitizationService类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: constructor

 constructor(
     private route: ActivatedRoute,
     private challengesService: ChallengesService,
     private identityService: IdentityService,
     private sanitizer: DomSanitizationService) {
         //this.introUrl = this.sanitizer.bypassSecurityTrustResourceUrl('https://www.youtube.com/embed/C-yYyvmjqfY?autoplay=1');
         this.introUrl = this.sanitizer.bypassSecurityTrustResourceUrl('https://player.vimeo.com/video/301290028');
         this.outroUrl = this.sanitizer.bypassSecurityTrustResourceUrl('https://player.vimeo.com/video/301290822');
     }
开发者ID:ryankwilson,项目名称:challengeapp,代码行数:9,代码来源:challenges.component.ts

示例2: constructor

 // #docregion trust-url
 constructor(private sanitizer: DomSanitizationService) {
   // javascript: URLs are dangerous if attacker controlled. Angular sanitizes them in data
   // binding, but we can explicitly tell Angular to trust this value:
   this.dangerousUrl = sanitizer.bypassSecurityTrustUrl('javascript:alert("Hi there")');
   // #enddocregion trust-url
   this.updateVideoUrl('PUBnlbjZFAI');
 }
开发者ID:AndresRicardoTorres,项目名称:angular.io,代码行数:8,代码来源:bypass-security.component.ts

示例3: ngOnInit

    ngOnInit(){
        this.showCode = sharpDox.projectData.showCode;
        this.member.linkedSyntaxSanitized = this._sanitizer.bypassSecurityTrustHtml(this.member.linkedSyntax);

        if(this.member.type == "method"){
            this.member.sequenceDiagramSanitized = this._sanitizer.bypassSecurityTrustHtml(this.member.sequenceDiagram);
        }
    }
开发者ID:Geaz,项目名称:SharpDox.Plugins.Html,代码行数:8,代码来源:member.component.ts

示例4: ngOnInit

 ngOnInit() {
     //console.log(this.assignmentDetail);
     this.myresponse = this.assignmentDetail["responses"][this.email];
     //console.log(this.myresponse);
     this.assignment_url = this.myresponse["attachmentUrl"];
     this.url = this.sanitizer.bypassSecurityTrustResourceUrl(this.assignment_url);//WARNING: calling this method with untrusted user data exposes your application to XSS security risks!
 }
开发者ID:raviraju,项目名称:teach2educateApp,代码行数:7,代码来源:student-resubmit.ts

示例5: updateVideoUrl

 // #docregion trust-video-url
 updateVideoUrl(id: string) {
   // Appending an ID to a YouTube URL is safe.
   // Always make sure to construct SafeValue objects as close as possible to the input data, so
   // that it's easier to check if the value is safe.
   this.videoUrl =
       this.sanitizer.bypassSecurityTrustResourceUrl('https://www.youtube.com/embed/' + id);
 }
开发者ID:AndresRicardoTorres,项目名称:angular.io,代码行数:8,代码来源:bypass-security.component.ts

示例6:

 .then((response) => {
   const posts = response.json()
   for (const post of posts) {
     post.content.rendered = this.sanitizer.bypassSecurityTrustHtml(post.content.rendered)
   }
   return posts
 })
开发者ID:likr,项目名称:wpapi-angular2-example,代码行数:7,代码来源:post.service.ts

示例7: transform

  transform(value: string, args: any[]) {

    if(!value)
      return value;

    return this.sanitizer.bypassSecurityTrustHtml(value);
  }
开发者ID:ottman,项目名称:front-1,代码行数:7,代码来源:safe.ts

示例8: InvalidPipeArgumentException

  transform(value) {
    if (isBlank(value)) return value;
    if (!isString(value)) {
      throw new InvalidPipeArgumentException(JsonPointerEscapePipe, value);
    }

    return this.sanitizer.bypassSecurityTrustHtml(value);
  }
开发者ID:ajeetkanojia,项目名称:ReDoc,代码行数:8,代码来源:pipes.ts

示例9: notify

 notify(state : State) : void {
     var currentPageData = state["SiteStateChanger.currentPageData"];
     if(state.changedKeys.indexOf("SiteStateChanger.currentPageData") > -1 && currentPageData !== undefined){
         this.currentPageData = state["SiteStateChanger.currentPageData"];
         this.currentPageData.contentSanitized = this.sanitizer.bypassSecurityTrustHtml(this.currentPageData.content);
         super.setChanged();
     }        
 } 
开发者ID:Geaz,项目名称:SharpDox.Plugins.Html,代码行数:8,代码来源:article.component.ts

示例10: updateVideoUrl

 // #docregion trust-video-url
 updateVideoUrl(id: string) {
   // Ajouter un ID à une URL YouTuve n'est pas risqué.
   // Veillez à toujours construire des objets SafeValue aussi fidèles
   // que possible aux données entrées afin de faciliter
   // leur vérification.
   this.urlDangereuseDeVideo = 'https://www.youtube.com/embed/' + id;
   this.urlDeVideo =
       this.sanitizer.bypassSecurityTrustResourceUrl(this.urlDangereuseDeVideo);
 }
开发者ID:ClementVidal,项目名称:angular-fr,代码行数:10,代码来源:bypass-security.component.ts


注:本文中的@angular/platform-browser.DomSanitizationService类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。