我有以下HTML
<span class="items-count">{{items | countmessage}}</span>
并按照过滤器显示正确的计数消息
app.filters
.filter('countmessage', function () {
return function (input) {
var result = input.length + ' item';
if (input.length != 1) result += 's';
return message;
}
});
但我希望使用不同的单词代替'item(s)',所以我修改了过滤器
app.filters
.filter('countmessage', function () {
return function (input, itemType) {
var result = input.length + ' ' + itemType;
if (input.length != 1) result += 's';
return message;
}
});
当我使用类似
的字符串时,它会起作用<span class="items-count">{{items | countmessage:'car'}}</span>
但不能使用$ scope中的变量,是否可以使用$ scope variable
<span class="items-count">{{items | countmessage:itemtype}}</span>
由于
答案 0 :(得分:37)
是的,可以使用$scope
看一下这个小提琴的例子: http://jsfiddle.net/lopisan/Kx4Tq/
HTML:
<body ng-app="myApp">
<div ng-controller="MyCtrl">
<input ng-model="variable"/><br/>
Live output: {{variable | countmessage : type}}!<br/>
Output: {{1 | countmessage : type}}!
</div>
</body>
JavaScript的:
var myApp = angular.module('myApp',['myApp.filters']);
function MyCtrl($scope) {
$scope.type = 'cat';
}
angular.module('myApp.filters', [])
.filter('countmessage', function () {
return function (input, itemType) {
var result = input + ' ' + itemType;
if (input > 1) result += 's';
return result;
}
});