は、誰もが私がステータスに提出されたどのように多くを知りたいと思ったJSONの下からステータスフィールド角度でJSONの特定の値JS
のカウントを得ることに私を助けることができます=オープンとクローズとAnular JSの値
角度JS(ここで私はURLからJSON値を取得していますし、それがJSONデータの下
var app = angular.module('defectApp', ["ngTable"]);
app.controller('defectController', [
'$scope',
'$http',
function($scope, $http) {
$http({method: 'POST', url: '/angular/defect/defect.json'}).success(function(response) {
$scope.post = response;
})
},
]);
が含まれているを取得できますか
を割り当て
JSONデータが
{
"data": [
{
"type": "defect",
"id": 1,
"user-01": "John",
"status": "Open",
"severity": "1 - Urgent"
},
{
"type": "defect",
"id": 2,
"user-01": "John",
"status": "Open",
"severity": "3 - High"
},
{
"type": "defect",
"id": 3,
"user-01": "John",
"status": "Assigned",
"severity": "3 - High"
},
{
"type": "defect",
"id": 4,
"user-01": "John",
"status": "Closed",
"severity": "4 - Medium"
},
{
"type": "defect",
"id": 5,
"user-01": "John",
"status": "Closed",
"severity": "4 - Medium"
}
]
}
[配列内のいくつかのプロパティを持つ項目の数を取得]の可能な複製(http://stackoverflow.com/questions/15360256/get-count-of-items-with-some-property-in-an-array ) – manzapanza
@manzapanza JSONデータにこのような質問をしてきました。非常に多くのフィールドがあります。このようなすべての関数を処理する方法はありますか?Count = Statusなどの数値を計算します。 – Batman