在我的角度4应用程序中,我有一个像
这样的字符串comment: string;
comment = "<p><em><strong>abc</strong></em></p>";
当我在html中提供此文本时,例如
{{comment}}
然后显示:
<p><em><strong>abc</strong></em></p>
但我需要以粗体和斜体形式显示文本“abc”,如 的 ABC
我该怎么做?
答案 0 :(得分:83)
使用单向流语法属性绑定:
<div [innerHTML]="comment"></div>