我真的不明白这一点,domsanitizer正在破坏我的文本区域中的html
我想绕过消毒,所以我用这个
responseDecoder : Decoder String
responseDecoder =
Json.Decode.map String.fromInt (field "data" (field "createDeadline" (field "id" int)))
但在我的文本区域
this.product['name_fr'] = this.domSanitizer.bypassSecurityTrustHtml(this.product['name_fr']);
出现
<input class="productNameInput" [(ngModel)]="product.name_fr" [formControl]="nameValidatorFr"/>
在数据库中,我的字符串存储为空
有人可以启发我吗?我想保留html完整
谢谢