Error:Property 'bypassSecurityTrustUrl' does not exist on type 'typeof CommonFunctions', when using it in a function?
Error:Property 'bypassSecurityTrustUrl' does not exist on type 'typeof CommonFunctions', when using it in a function?
我想为函数中经常使用的语句构建一个通用的class。
如果我在函数中使用此关键字,我会收到错误消息。
import {Component} from '@angular/core';
import { DomSanitizer } from '@angular/platform-browser';
export class CommonFunctions {
constructor(private sanitizer: DomSanitizer){
}
static sum(a: number, b: number): number {
return a + b;
}
static formatImage(projectList:any):any {
for (var index in projectList) {
let images = projectList[index].img;
let objectURL = 'data:image/jpeg;base64,' + images;
//error in this line
let thumbnail1 = this.bypassSecurityTrustUrl(objectURL);
projectList[index].img = thumbnail1;
}
return projectList;
}
}
应该是:
this.sanitizer.bypassSecurityTrustUrl(...)
而不是
this.bypassSecurityTrustUrl(...)
我想为函数中经常使用的语句构建一个通用的class。
如果我在函数中使用此关键字,我会收到错误消息。
import {Component} from '@angular/core';
import { DomSanitizer } from '@angular/platform-browser';
export class CommonFunctions {
constructor(private sanitizer: DomSanitizer){
}
static sum(a: number, b: number): number {
return a + b;
}
static formatImage(projectList:any):any {
for (var index in projectList) {
let images = projectList[index].img;
let objectURL = 'data:image/jpeg;base64,' + images;
//error in this line
let thumbnail1 = this.bypassSecurityTrustUrl(objectURL);
projectList[index].img = thumbnail1;
}
return projectList;
}
}
应该是:
this.sanitizer.bypassSecurityTrustUrl(...)
而不是
this.bypassSecurityTrustUrl(...)