web-dev-qa-db-ja.com

Angular JSはタグ内にHTMLを表示します

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>
32
Niraj Chauhan

OKこれの解決策を見つけました:

JS:

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

HTML:

<p ng-bind-html="renderHtml(value.button)"></p>
120
Niraj Chauhan

このようなフィルターを作る

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

これをフィルターとしてng-bind-htmlに適用します

<div ng-bind-html="code | trusted">
13
Ruben Decrop