简要说明:我有json格式的html数据,当我点击按钮时,数据会出现在html页面上并附带警告信息 -
警告:清理HTML会剥离一些内容(请参阅http://g.co/ng/security#xss)。
当我检查它时,我看不到contenteditable="true"
我该如何使用?
以下是我的代码
home.ts
public json_html = {
"button1":`<div class="content_text" contenteditable="true"><p>This is an editable paragraph.</p></div>`,
"button2":"<p>second section</p>",
"button3":"<p><b>third section<b></p>",
}
constructor(....)
this.buttons = Object.keys(this.json_html);
home.html的
<button ion-button *ngFor="let button of buttons" (click)="selectedButton = button">
{{ button }}
</button>
<div *ngIf="selectedButton" [innerHtml]="json_html[selectedButton]">
</div>