我正在使用带有角度预输入的过滤器将额外的项目附加到预输入建议列表中,如下所示:
app.filter('finalAppend', function($sce){
return function(array, value){
array.push({
name: $sce.trustAsHtml('Look for <b>' + value + '</b> in other shops'),
type: 'good'
});
return array;
}
});
我想返回 html 编码的字符串,但 angular 会自动对其进行清理。我尝试按照建议使用 $sce ,但它似乎不起作用。这是 plunkr:plunkr
提前致谢。