封装成过滤器只是为了方便使用
app.filter('to_trusted', ['$sce', function ($sce) {return function (text) { return $sce.trustAsHtml(text);};
}]);
html code:
本文共 191 字,大约阅读时间需要 1 分钟。
封装成过滤器只是为了方便使用
app.filter('to_trusted', ['$sce', function ($sce) {return function (text) { return $sce.trustAsHtml(text);};
}]);
html code:
转载于:https://my.oschina.net/u/2391658/blog/882667