我有下面的HTML,我正在尝试在字段item.Image中获取Image标记。有没有Angular大师知道为什么以下不起作用?
<li ng-repeat="item in results.results" >
<div ng-bind-html-unsafe="item.Image"></div> <!-- item.Image is <a href="image/test.png"/> -->
答案 0 :(得分:0)
这可能是由于您正在使用的角度版本。
ngBindHtmlUnsafe
已替换为1.2
ngBindHtml
Here is a working example with 1.07使用ngBindHtmlUnsafe
And here is a working example with 1.2使用ngBindHtml
(请注意,ng-sanitize需要作为依赖项传入)