I'm trying to implement an ion-infinite-scroll using the ionic framework, I have a REST API that allows me set the index to get request a range.. my Service looks like this, where begin in end are indexes.
this.GetUserRatings = function (id, begin, end) {
return $http.get($rootScope.endPoint + '/user/' + id + '/ratings/'+ begin + '/' + end);
};
When the page reloads initially i want 10 items in the list so in my controller it would go like this..
UserService.GetUserRatings($stateParams.id, 1, 10)
.success(function (data) {
$scope.userRatings = angular.fromJson(data);
}).error(function(error) {
//do something
});
As I scroll down the list, I want my ion-infinite-scroll to get the next 10 items (11 - 20) and the next (21 - 30) and so on.. So how do i do that?
$scope.loadMore = function() {
// UserService.GetUserRatings($stateParams.id, ?, ?)
// $scope.ratings.push({...}); I'm guessing this will be in the success
//also how to know if no more results
$scope.$broadcast('scroll.infiniteScrollComplete');
};
$scope.ratings = [];
In the view it goes like this..
<ion-infinite-scroll ng-if="noMoreResults" on-infinite="loadMore()" distance="10%"></ion-infinite-scroll>
Basicly, you are updating
$scope.userRatings
, so I'd use something like that which consist of :first getting next items
then adding those items to your list. Note that I suggest a merge method but without more info on your data structure, it is hard to suggest something appropriate.
I don't know how you can get noMoreResults to true, but you may know when to intantiate it ;)
.
EDIT : As your response is like that :
I suggest changing the merge with the follwoing :