角度ui分页不起作用

时间:2015-10-20 06:11:29

标签: angularjs pagination

这个分页可能会有一点错误。表格中的日期未随页面链接的更改而更新

                <uib-pagination
                        ng-model="currentPage"
                        total-items="rows.length"
                        max-size="maxSize"
                        boundary-links="true">
                </uib-pagination>

http://plnkr.co/edit/1XPI7zwSrooBeAcBNddU?p=preview

1 个答案:

答案 0 :(得分:5)

我认为你可以稍微简化你的代码...... 这应该有效:

HTML(只是差异):

<tr ng-repeat="reservation in rows | limitTo:numPerPage:(currentPage - 1) * numPerPage">

JS:

$scope.rows=[ ... ];
$scope.currentPage = 1;
$scope.numPerPage = 3;
$scope.maxSize = 5;
$scope.startAt = 0;