我们把它封装成一个过滤器,这样就可以在模板上随时调用了
app.filter('to_trusted', ['$sce', function($sce) { return function (text) { return $sce.trustAsHtml(text); }; }]);示例
<p ng-bind-html="user.status | status | to_trusted"></p>
我们把它封装成一个过滤器,这样就可以在模板上随时调用了 app.filter(to_trusted, [$sce, function($sce) { return function (text) { return $sce.trustAsHtml(text); };}]); 示例 p ng-bind-html=user.status |
我们把它封装成一个过滤器,这样就可以在模板上随时调用了
app.filter('to_trusted', ['$sce', function($sce) { return function (text) { return $sce.trustAsHtml(text); }; }]);示例
<p ng-bind-html="user.status | status | to_trusted"></p>
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。
Json传到服务端序列化json参数的Filter类
2017-01-02 18:03
AngularJS之Filter(二)
2016-12-17 17:03
Angular学习笔记之angular的$filter服务浅析
2016-11-27 15:00
自定义jinja2 过滤器
2016-02-14 10:00