标签: javascript html angularjs
所以我想知道如何在AngularJS对象中计算HTML(像这样:{{names}}),但我在对象中有一个'<a>'元素。
{{names}}
'<a>'
它是这样的:
<a href="http://www.example.com">link text</a>
我想要这个:link text 我希望this page中的链接成为那些链接。
答案 0 :(得分:3)
我非常确定您找到的答案可以找到here ng-href,这样您就可以使用{{}}语法从角度控制器动态生成网址。
ng-href
{{}}
答案 1 :(得分:0)
我认为你需要这样的事情<div ng-bind-html="name"></div>。
<div ng-bind-html="name"></div>
注意:如果您的HTML内容包含链接,则可能需要执行'$ sce.trustAsHtml()'。但是,在执行此操作之前,请确保HTML中的内容是安全的。查看更多详情Here