我有一个SafeValue
,需要访问内部包装的值。目前我是这样的:
const mySafeValue = this.sanitizer.bypassSecurityTrustStyle('42px solid black');
console.log(mySafeValue['changingThisBreaksApplicationSecurity']);
这很好用,但是我很确定这不是您应该怎么做。取回包装为SafeValue
的值的推荐方法是什么?
答案 0 :(得分:0)
Powkachu链接的答案提供了正确的答案。您可以使用消毒剂获得价值。
const myValue = this.domSanitizer.sanitize(SecurityContext.HTML, mySafeValue)