如何在Angular 4+中使用html标签呈现字符串?

时间:2018-02-27 16:15:58

标签: html angular rendering

在我的角度4应用程序中,我有一个像

这样的字符串
comment: string;
comment = "<p><em><strong>abc</strong></em></p>";

当我在html中提供此文本时,例如

{{comment}}

然后显示:

<p><em><strong>abc</strong></em></p>

但我需要以粗体和斜体形式显示文本“abc”,如 的 ABC

我该怎么做?

1 个答案:

答案 0 :(得分:83)

使用单向流语法属性绑定

<div [innerHTML]="comment"></div>