有人能指出我正确的方向找出一种方法来解决分页和orderBy在Angular中一起工作的方式吗?
目前,我可以orderBy并分页数据[]的结果,但orderBy过滤器仅单独影响每个页面。
例如,如果我按ID按相反顺序排序,则第1页将列出10-1,而第2页将列出15-11,而不是从15开始并在第二页结尾处转到1。
我在这里有一个基本的小提琴http://jsfiddle.net/ZbMsR/
这是我的控制器:
function MyCtrl($scope) {
$scope.currentPage = 0;
$scope.pageSize = 10;
$scope.orderBy = "-appId";
$scope.data = [
{'appId': 1}, {'appId': 2}, {'appId': 3}, {'appId': 4}, {'appId': 5}, {'appId': 6}, {'appId': 7}, {'appId': 8}, {'appId': 9},{'appId': 10}, {'appId': 11}, {'appId': 12}, {'appId': 13}, {'appId': 14}, {'appId': 15}
];
$scope.numberOfPages=function(){
return Math.ceil($scope.data.length/$scope.pageSize);
};
}
//We already have a limitTo filter built-in to angular,
//let's make a startFrom filter
app.filter('startFrom', function() {
return function(input, start) {
start = +start; //parse to int
return input.slice(start);
}
});
以下是我的观点的相关部分
<strong>Sort By:</strong> <a ng-click="orderBy = 'appId'; reverse=!reverse">Newest</a>
<ul>
<li ng-repeat="item in data | startFrom:currentPage*pageSize | limitTo:pageSize | orderBy:orderBy:reverse">
{{item.appId}}
</li>
</ul>
答案 0 :(得分:40)
如果您有完整的客户端分页,那么您只需更改过滤器的顺序:
<li ng-repeat="item in data | orderBy:orderBy:reverse | startFrom:currentPage*pageSize | limitTo:pageSize ">
这是你所期望的吗?