我有一个小的角度过滤器,它插入一个(引导)图标来代替真值。它可以工作,但 html 已编码:
var conApp = angular.module('conApp', []);
conApp.filter('trueIcon', function($filter){
return function(booleanValue){
return booleanValue ? '<i class="icon-ok"></i>' : '';
}
});
我必须实现另一个过滤器来解码 html 吗?有这样做的“角度”方式吗?