0
我的根控制器位於我的AngularJS
Web應用程序和過濾器中。過濾器如果我在html
模板中應用它,但它不起作用,如果我試圖在控制器中應用過濾器。AngularJS在控制器中應用過濾器
function Controller (... deps ...) {
filter = $filter('my_filter');
$scope.$apply(function(){$scope.error_message = filter('ERROR');});
}
filter
必須返回簡單error
字符串到<p>
,這是行不通的。
,如果我做:
<p>{{'....' | my_filter}}</p>
它的工作原理。爲什麼?
謝謝。
如果我想要做一個指令,同樣的事情? http://stackoverflow.com/questions/17202242/assign-the-filter-value-to-a-variable-within-a-directive – marceloduende