在js文件中我有 vm.text= response.children.map(function (e) { var html = '<a ng-click="hello">' + e.number+ '</a>'; return html; }).join(' || ');在html中我有 <div> <strong> {{vm.text}}</strong> </div>Above div display <a ng-click="hello">9253</a> || <a ng-click="hello">1025</a>不仅仅是数字,还有超链接。我猜测 {{}} 不允许使用 html。我该如何让它不执行并显示链接?
1 回答
慕姐8265434
TA贡献1813条经验 获得超2个赞
尝试使用<strong [innerHTML]="vm.text"></strong>
.
编辑:我没有注意到ng-
前缀,你应该使用ng-bind-html
它。
添加回答
举报
0/150
提交
取消