第一步 在页面中在要输出的地方按照如下
第二部 在controller中创建一个 叫to_trusted的过滤器 使文本中的标签字符串 按照 html中的标签来输出
angular.module("list",[]).controller("BlogListCtrl", BlogListCtrl).filter('to_trusted', ['$sce',function($sce) {
returnfunction(text) {
return$sce.trustAsHtml(text);
}
}
文章参考:http://www.jb51.net/article/93179.htm