我遇到类似的错误警告:清除不安全的样式值[object Object](请参见http://g.co/ng/security#xss)。 如何解决此警告。
我已经尝试过了。
在我的component.ts
var safestyleClr = this.sanitizer.bypassSecurityTrustStyle(this.itemSetDetails[i].color);
this.itemSetDetails[i].color =safestyleClr;
在我的component.html中,
[ngStyle]="{'background-color': data.color}"
我也尝试过
[style.background]= data.color
仍然无法解决此问题,任何人都可以帮忙
谢谢。