gpt4 book ai didi

javascript - Angular 指令 ng-bind-html 在某些情况下不起作用

转载 作者:行者123 更新时间:2023-11-28 10:49:09 26 4
gpt4 key购买 nike

我想我尝试了堆栈溢出中提供的所有解决方案,但找不到答案。

我正在使用 Angular 1.4.4 和 ng-repeat 指令,我想在表格行内显示 HTML 注释。示例评论为“测试评论

<tbody ng-show="dataLoaded">
<tr ng-repeat="comment in comments | filter: commentFilter | commentFilter: customCommentFilter | limitTo: 10 : (currentPage*10-10)">
<td ng-bind-html="comment.Comment | html">
</td>
</tr>
</tbody>

然后,在我的过滤器文件中,我使用以下过滤器:

// html filter (render text as html)
angular.module('app').filter('html', ['$sce', function ($sce) {
return function (text) {
return $sce.trustAsHtml(text);
};

此外,当我写类似的内容时它正在工作

<td ng-bind-html="'<b>abc</b>' | html">

最后,当我写下类似的内容

<td>
{{comment.Comment}}
</td>

评论显示为测试评论

此外,我还添加了 ngSanitize:

(function () {
'use strict';

var app = angular.module('app', [
// Angular modules
'ngCookies',
'ngRoute',
'ngAnimate',
'ngSanitize',
]);
...
...
})();

我的问题是,如何使 ng-bind-html 在我的示例中工作?

最佳答案

<tbody ng-show="dataLoaded">
<tr ng-repeat="comment in comments | filter: commentFilter | commentFilter: customCommentFilter | limitTo: 10 : (currentPage*10-10)">
<td ng-bind="comment.Comment">
</td>
</tr>
</tbody>

关于javascript - Angular 指令 ng-bind-html 在某些情况下不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36693345/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com