angular中将$sce服务封装成过滤器

前端之家收集整理的这篇文章主要介绍了angular中将$sce服务封装成过滤器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

封装成过滤器只是为了方便使用

app.filter('to_trusted',['$sce',function ($sce) {
return function (text) {
    return $sce.trustAsHtml(text);
};

}]);

html code:

<p ng-bind-html="currentWork.description | to_trusted"></p>
原文链接:https://www.f2er.com/angularjs/147483.html

猜你在找的Angularjs相关文章