使用ng-bind-html渲染html字符串时需要在控制器外注册$sec 过滤器
//过滤器渲染html字符串
app.filter('to_trusted',['$sce',function($sce){
return function(text){
return $sce.trustAsHtml(text);
};
}]);
//dom元素
<p ng-bind-html="signaa | to_trusted"></p>
2023-07-21 19:04:46
使用ng-bind-html渲染html字符串时需要在控制器外注册$sec 过滤器