gpt4 book ai didi

javascript - 如何让 Angular 识别绑定(bind)中的 HTML?

转载 作者:行者123 更新时间:2023-11-28 05:13:06 24 4
gpt4 key购买 nike

我正在尝试让 Angular 识别绑定(bind)文本中的标签:

<p *ngFor="let explanation of explanations">{{explanation.htmlText}}</p>

这是解释对象的样子:

{
"id": 1,
"htmlText": "This is a dummy text to test <a>links</a>. Looks like it doesn't work."
}

但是结果是这样的:

enter image description here

有没有办法让它识别 <a>标记并显示实际的 <a> <p> 内的元素元素?

最佳答案

使用innerHTML因为传统的插值是行不通的,

<p *ngFor="let explanation of explanations" [innerHTML]="explanation.htmlText"></p>

希望这对您有所帮助!

关于javascript - 如何让 Angular 识别绑定(bind)中的 HTML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51478064/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com