ng 1.2 ng-bind-html 用法

使用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>
上一篇:Flask的Windows部署:mod_wsgi + Apache


下一篇:使用VSCode调试单个PHP文件