Angularjs。如何将变量作为参数传递给自定义过滤器?

时间:2013-03-27 13:06:09

标签: javascript angularjs

我有以下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>

由于

1 个答案:

答案 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;
        }
     });