2016-03-15 132 views
0

我怎麼能這樣寫 enter image description here離子如何閱讀JSON數組

JSON array.it負載我加載JSON ARR使用此代碼 -

example.controller('ExhibitionTabCtrl', ['$scope', '$http', function($scope,$http) { 
     $http.get("json/pills.json") 
     .success(function (response) 
     { 
     console.log(response); 
     $scope.users = response; 
     }); 
    }]); 

在列表視圖中紅色的json數據是這樣

<ion-view title="Sig"> 
<ion-content class="padding" ng-controller="ExhibitionTabCtrl"> 

<ion-pane> 
     <ion-header-bar class="bar-stable"> 
     <h1 class="title">Ionic Blank Starter</h1> 
     </ion-header-bar> 
     <ion-content> 
     <ion-list> 
      <ion-item ng-repeat="x in users|orderBy:'name'"> 
      {{ x.name + ', ' + x.full_name+', '+x.description}} 
      </ion-item> 
     </ion-list> 
     </ion-content> 
    </ion-pane> 



</ion-content> 

</ion-view> 

但在列表不顯示的數據我view.how能解決this.can任何一個可以幫助我here.Thanks。

+2

看來也許你可能需要'$ scope.users = response.Sheet1'? – GONeale

+0

感謝它的工作。 – kosala

+1

太好了。我已提交作爲答案。 – GONeale

回答

2

kosala,您需要指定$scope.users = response.Sheet1而不是$scope.users = response