Div*_*ero 5 angularjs angularjs-ng-repeat angularjs-filter
对于我的AngularJS应用程序,我在ng-repeat中有一个ng-repeat,如下所示:
HTML:
<div ng-app="myApp">
<div ng-controller="myController">
<h2>working filter</h2>
<div ng-repeat="category in categories">
<h3>{{category}}</h3>
<div ng-repeat="item in items | filter:{price.red: 0} ">{{item.name}}</div>
</div>
<h2>broken filter</h2>
<div ng-repeat="category in categories">
<h3>{{category}}</h3>
<!-- price[category] should be red, blue, yellow, depending on the category in the ng-repeat -->
<!-- price[category] should be bigger then 0 (or not zero, negative values will not occur) -->
<div ng-repeat="item in items | filter:{price[category]: 0} ">{{item.name}}</div>
</div>
</div>
</div>
Run Code Online (Sandbox Code Playgroud)
使用Javascript:
var myApp = angular.module('myApp', []);
myApp.controller('myController', function ($scope) {
$scope.categories = ['red', 'blue', 'yellow'];
$scope.items = [
{name: 'one', price:{red: 0, blue: 1, yellow: 3} },
{name: 'two', price:{red: 2, blue: 0, yellow: 0}},
]
});
Run Code Online (Sandbox Code Playgroud)
请看我的jsFiddle http://jsfiddle.net/hm8qD/
所以我遇到了两个问题:
对于大于零,我可以制作自定义过滤器.但据我所知,过滤器不接受参数,所以我无法获得类别(红色,蓝色或黄色).
请注意,这是我的实际代码的简化版本,这个上下文可能没有最好的意义.我希望我能清楚地解释我需要过滤器做什么,因为我是AngularJS的新手.
显然,实际上可以将参数传递给过滤器,但您必须创建自定义过滤器,而不是使用“filter:表达式”。我所做的是创建一个自定义过滤器,它将项目和类别作为参数,并返回包含过滤项目的数组。
myApp.filter('myFilter', function () {
return function (items, category) {
var newItems = [];
for (var i = 0; i < items.length; i++) {
if (items[i].price[category] > 0) {
newItems.push(items[i]);
}
};
return newItems;
}
});
Run Code Online (Sandbox Code Playgroud)
请参阅此处更新的小提琴: http: //jsfiddle.net/hm8qD/3/
| 归档时间: |
|
| 查看次数: |
15229 次 |
| 最近记录: |