NG重复中的角度渲染图像标记

时间:2014-06-12 14:47:26

标签: angularjs

我有下面的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"/> -->

1 个答案:

答案 0 :(得分:0)

这可能是由于您正在使用的角度版本。

ngBindHtmlUnsafe已替换为1.2

中的ngBindHtml

https://docs.angularjs.org/guide/migration#ngbindhtmlunsafe-has-been-removed-and-replaced-by-ngbindhtml

Here is a working example with 1.07使用ngBindHtmlUnsafe

And here is a working example with 1.2使用ngBindHtml(请注意,ng-sanitize需要作为依赖项传入)