在Angular 9中,属性'sanitizer'被标记为私有,只能在类内部访问。如果你想在类的外部访问它,你可以使用以下解决方法:
import { Component, OnInit, SecurityContext, Sanitizer } from '@angular/core';
@Component({
selector: 'app-example',
template: `
`,
})
export class ExampleComponent implements OnInit {
html = '';
constructor(private sanitizer: DomSanitizer) {}
ngOnInit() {}
sanitizeHtml(value: string) {
return this.sanitizer.sanitize(SecurityContext.HTML, value);
}
}
在上面的示例中,我们创建了一个名为'sanitizeHtml'的公共方法,该方法使用属性'sanitizer'来进行HTML的安全处理。通过使用这个公共方法,我们可以在类的外部访问属性'sanitizer'。
import { Component, OnInit, SecurityContext, Sanitizer, Injector } from '@angular/core';
@Component({
selector: 'app-example',
template: `
`,
})
export class ExampleComponent implements OnInit {
html = '';
private sanitizer: Sanitizer;
constructor(private injector: Injector) {}
ngOnInit() {
this.sanitizer = this.injector.get(Sanitizer);
}
sanitizeHtml(value: string) {
return this.sanitizer.sanitize(SecurityContext.HTML, value);
}
}
在上面的示例中,我们使用了Injector
来获取属性'sanitizer'的实例。通过在ngOnInit
方法中获取实例,我们可以在类的外部访问属性'sanitizer'。
上述两种方法都可以在类的外部访问属性'sanitizer',选择其中一种方法来解决你的问题。