Angularjs:过滤包含子字符串的ng-repeat中的项目

时间:2015-05-20 12:43:28

标签: javascript angularjs angularjs-ng-repeat angular-filters

所以我有一个动态设置的范围变量:

$scope.month = 'June'; //this will be a runtime assignment

我有一个数组(示例),我必须使用ng-repeat进行迭代:

$scope.dates = ['12 June, 2015', '12 April, 2015', '13 May, 2015' ];

这是标记:

<div ng-repeat = "date in dates">
    {{date}}
</div>

现在我想要实现的是在ng-repeat循环中,我只打印那些包含存储在$ scope.month中的月份的日期。我怎么能用过滤器做到这一点?

2 个答案:

答案 0 :(得分:8)

您可以将参数传递给过滤器

<div ng-repeat="date in dates | filterByMonth:month"></div>

然后你可以在你的过滤器中完成剩下的工作

myApp.filter("filterByMonth", function() { 
    return function (dates, month) {
        return dates.filter(function (item) {
            return item.indexOf(month) > -1;    
        });
    };
});

demo

答案 1 :(得分:1)

另一种解决方案是创建一个新数组并在ng-repeat中使用它。

HTML:

<div ng-repeat = "date in dates1">
    {{date}}
</div>

JS:

$scope.month = 'June';
    $scope.dates = ['12 June, 2015', '12 April, 2015', '13 May, 2015' ];
    $scope.dates1 = $scope.dates.map(function(item){
        if(item.indexOf($scope.month) != -1){
          return item;
        }
    })

小提琴here.