未捕获的错误:达到10 $ digest()迭代。中止角度重复无限循环

时间:2016-07-28 12:25:28

标签: angularjs loops angularjs-ng-repeat infinite

模板代码

 <ion-item ng-repeat="itemList in itemLists" href="#/app/itemDetail/{{itemList.itemnum}}">
      <h2 class="title">  {{itemList.itemnum}} </h2>
        <h4 class="title">  {{itemList.itemdes}} </h4>
          <h4 class="title">  {{itemList.binnum}} </h4>
  </ion-item>

控制器代码

dataFactory.getItemDetails(categoryID).then(function (data_) {        
    $scope.itemLists =  data_.rows;
    $ionicLoading.hide();
  }, function (error) {
    console.log('Error getting the data' + error);
    $ionicLoading.hide();
  });**strong text**

我第一次在这里发帖提问。我无法确定ng-repeate在无限循环中出现了什么问题。

0 个答案:

没有答案