1
我試圖將HTML字符串綁定到角2工具提示。但它呈現爲HTML,它顯示爲一個純字符串。有什麼辦法可以將字符串呈現爲HTML。Angular 2材料工具提示與角度的HTML內容
這裏是我的代碼:
在View:
<span class="icon-status" mdTooltip="{{value.status}}"></span>
組件:
value.status = this.sanitizer.bypassSecurityTrustHtml(this.getStatusTemplate(value.status));
getStatusTemplate(status: IIconStatus): string{
let HTML =`
<div>Event Title</div>
<div class="">
<table>
<thead>
<th>User</th>
<th>User</th>
<th>User</th>
<th>User</th>
</thead>
</table>
</div>
`;
return HTML;}
在此先感謝。
@yurzui你只提供了一條評論,你以前有很多機會做出答案。另外,這個答案爲索賠提供了一個來源。 –