Angular 5中的app.component.ts中的html

时间:2018-02-05 04:41:19

标签: angular typescript

我想在我的应用中创建一个可更新的元素,

所以在我的HTML中我有

<div>{{example}}</div>

然后在我的应用程序组件中我完成了这个..

example: string = `this is some text <br> this is more text`

但网站上的输出是this is some text <br> this is more text所以整个内容都是作为字符串

插入的

谢谢

1 个答案:

答案 0 :(得分:0)

您应该使用innerHTML

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

<强> WORKING DEMO