34

我正在尝试使用ng-bind-html-unsafe属性在模板中插入 HTML。但由于某种原因,它不起作用。

我的代码:

<tr class="white two-button" ng-repeat="(key,value) in recommendations | ojoScoreFilter:ojoScore | relevancyScoreFilter:relevancyScore | orderBy:predicate:reverse">
<td>
<div ng-bind-html-unsafe="value.button"></div>
</td>
</tr>

我看不到 HTML。如果我更改ng-bind-html-unsafe="value.button"ng-bind-html-unsafe="{{value.button}}"然后它显示 HTML 但在属性内,如下所示:

<div ng-bind-html-unsafe="&lt;a class=&quot;action_hrefs full-width bgcolor10 purple-hover flat-button flat-white-button btn&quot; data-value=&quot;947&quot; href=&quot;#&quot;&gt;&lt;i class=&quot;fa fa-lock&quot;&gt;&lt;/i&gt;&nbsp;Unlock&lt;/a&gt;"></div>
4

2 回答 2

123

好的,我找到了解决方案:

JS:

$scope.renderHtml = function(html_code)
{
    return $sce.trustAsHtml(html_code);
};

HTML:

<p ng-bind-html="renderHtml(value.button)"></p>
于 2014-02-17T12:56:17.273 回答
14

做一个这样的过滤器

.filter('trusted',
   function($sce) {
     return function(ss) {
       return $sce.trustAsHtml(ss)
     };
   }
)

并将其作为过滤器应用到 ng-bind-html 之类的

<div ng-bind-html="code | trusted">
于 2016-03-27T13:49:32.750 回答