标签: 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所以整个内容都是作为字符串
this is some text <br> this is more text
谢谢
答案 0 :(得分:0)
您应该使用innerHTML:
innerHTML
<div [innerHTML]="example"></div>
<强> WORKING DEMO 强>