我需要帮助来创建自定义过滤器或指令,而不是替换模板的单词。例如,在“我的产品新”一文中,我想为模板'isnew.html'替换'NEW' 有人可以帮帮我吗?
答案 0 :(得分:1)
HTML:
<div ng-bind-html="getText()"></div>
控制器:
$scope.getText = function(){
var new = $templateCache.get('isnew.html');
return 'My product ' + new;
}