AngularJS - 过滤数据' true'属性

时间:2016-05-18 04:47:51

标签: javascript angularjs json angular-filters

我正在使用AngularJS,并且我已经加入了子文档(' orderfood'来自JSON以下)并获得了我的JSON数据总和的总和,orderfood我有confirm属性。我想仅过滤placed属性中值confirm的数据。我的plunker demo

我得到的结果

3 quantities of V 4 Vanilla should be prepared
3 quantities of Power cut should be prepared

预期结果

2 quantities of V 4 Vanilla should be prepared
3 quantities of Power cut should be prepared

JSON

[{
"_id": "56e3bff0e9932ca6425e6f65",
"orderfood": [
  {
  "qty": "2",
  "confirm": "placed",
  "name": "V 4 Vanilla"
  }
],
"name": "Rohit",
"created": "2016-03-12T07:06:24.424Z"
},
{
"_id": "56e3bd5bc3791b973c048804",
"user": null,
"__v": 10,
"orderfood": [
  {
  "qty": "1",
  "confirm": "cancelled",
  "name": "V 4 Vanilla"
  },
  {
  "qty": "3",
  "confirm": "placed",
  "name": "Power cut"
  }
],
"name": "Rohit",
"created": "2016-03-12T06:55:23.244Z"
}];

控制器

$scope.getOrderFoods = function() {
var orderfood = [];

$scope.reduce= function(data){
   return data.reduce(function(previousValue,
   currentValue, currentIndex, array) {
  return previousValue + parseInt(currentValue.qty);
}, 0);
}

angular.forEach($scope.orders, function(order) {
  angular.forEach(order.orderfood, function(orderfoo) {
    if (orderfood.indexOf(orderfoo) == -1) {
      orderfood.push(orderfoo);
    }
  })
});
return orderfood;
}

HTML

<div ng-repeat="(key,data) in getOrderFoods() | groupBy:'name'">
  <p><span>{{reduce(data)}}</span> quantities of <span>{{key}}</span> should be prepared </p>
</div>

我的plunker demo

1 个答案:

答案 0 :(得分:1)

只需在ng-repeat

中添加条件作为过滤条件即可
<div ng-repeat="(key,data) in getOrderFoods() | filter: {confirm: 'placed'} | groupBy:'name'">

Plnkr