在网格首次加载时,我正在正确获取数据。 向下滚动后出现问题。 它显示每行中第一个加载的最后一条记录的最后一条记录。
下面是我的无限滚动功能代码。
$scope.getDataDown = function() {
var promise = $q.defer();
$scope.lastPage++;
if ($scope.data.length < $scope.total) {
$http(getRequest()).success(function(data) {
promise.resolve();
var jb = JSON.stringify(data.content);
$scope.gridApi.infiniteScroll.saveScrollPercentage();
$scope.data = $scope.data.concat(data.content);
$scope.total = data.total ? data.total : data.length;
$scope.length = $scope.data.length;
$scope.gridApi.infiniteScroll.dataLoaded(false,
$scope.lastPage < ($scope.total / $scope.pageSize));
}).error(function(error) {
$scope.gridApi.infiniteScroll.dataLoaded();
});
}
return promise.promise;
};
答案 0 :(得分:1)
我明白了。 Funciton是对的,但我在我的代码中使用了以下函数,它与此函数冲突
$scope.gridOptions.rowIdentity = function(row) {
return row.id;
};