我有这个HTML
<div ng-bind-html="safeHtml"></div>
<button ng-click="refresh()">refresh</button>
刷新函数应如何显示,以便刷新值。
答案 0 :(得分:1)
@jcubic它会在你在一个对象中使用时自动改变(data.safeHtml)。喜欢 -
<div ng-bind-html="data.safeHtml"></div>
<button ng-click="refresh()">refresh</button>