模板代码
<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在无限循环中出现了什么问题。