从angularjs中的几个json数组动态检索数据

时间:2016-04-21 07:31:58

标签: javascript arrays angularjs json

我得到几个json数组,我想在循环中检索一些数据。我想要的是键count

的值

这是我的代码:

                .then(function(){
                    var tabuser = JSON.parse(localStorage.getItem("myid"));

                    for(i = 0; i < tabuser.length; i++){
                        console.log(tabuser[i].id);
                        displayfilter
                            .user(token,tabuser[i].id)
                            .then(function(data){

                                console.log(data);
                                $scope.numtickets = data;


                            })
                    }

                })

这是我从`console.log(数据)获得的:

enter image description here

我想为每个json数组检索键count的值。我如何在我的视图中显示它?

1 个答案:

答案 0 :(得分:1)

创建一个json数组:

$scope.numtickets = [];

继续推送keycount的值:

$scope.numtickets.push(data);

在视图上显示数组:

<div ng-repeat="numticket in numtickets">
   {{numticket.count}}
</div>