在我的控制器中,我有以下代码从数据库中获取数据。
$scope.noOfPages = 0;
$scope.currentPage = 1;
$scope.maxSize = 5;
$scope.tickets = TicRepository.getTics.query({ id: $routeParams.t_id }, function (data) {
$scope.tickets = data.items;
$scope.noOfPages = data.totalPages,
$scope.currentPage = data.pages;
});
在我的HTML中我有
<div>
div>
{{noOfPages}} {{currentPage}} {{maxSize}}
<pagination num-pages="noOfPages" current-page="currentPage"></pagination>
</div>
<div ng-repeat="tics in tickets " >
................
</div>
</div>
我的数据很好,但分页不起作用。在分页按钮中,它只显示1页并列出所有项目。请让我知道如何解决这个问题。 谢谢
答案 0 :(得分:2)
看起来您正在使用ui.bootstrap.pagination
。 pagination
指令跟踪当前页面,但您仍需要过滤数组。一种解决方案是ng-repeat
在数组的一个子集上:
<pagination ng-model="currentPage" total-items="tickets.length" items-per-page="5"></pagination>
<div class="alert alert-info" ng-repeat="tic in paged.tickets">
{{tic}}
</div>
然后在当前页面发生更改时更新该子集:
$scope.$watch('currentPage', function() {
var begin = ($scope.currentPage - 1) * $scope.itemsPerPage;
var end = begin + $scope.itemsPerPage;
$scope.paged = {
tickets: $scope.tickets.slice(begin, end)
}
});
这是一个有效的演示:http://plnkr.co/edit/oFuE6vjI6t0AHhSVt6Gt?p=preview
此相关问题涵盖了其他一些(更复杂的)选项:Pagination on a list using ng-repeat
答案 1 :(得分:0)
这就是我实施的方式,希望对您有所帮助。
JS:
$scope.RegionPage = 1;
$scope.RegionRow = 10;
$scope.RegionRows = [5, 10, 20];
$scope.GetAttributesByRegion = function (regionFrwdPageButtonClick, regionBckPageButtonClick) {
if (regionFrwdPageButtonClick) {
if (($scope.RegionPage + 1) <= $scope.RegionTotalPages) {
$scope.RegionPage = $scope.RegionPage + 1;
}
}
if (regionBckPageButtonClick) {
if ($scope.RegionPage <= 0) {
$scope.RegionPage = 1;
} if ($scope.RegionPage > 1) {
$scope.RegionPage = $scope.RegionPage - 1;
}
}
//get all regions
$http({ method: 'GET', url: '/Admin/GetAttributesByRegion', params: { page: $scope.RegionPage, rows: $scope.RegionRow } }).success(function (data, status) {
$scope.Regions = data;
$scope.RegionTotalRecords = 0;
if (data != null && data != '' && JSON.stringify(data) != '[]') {
$scope.RegionTotalPages = parseInt(Math.ceil(data[0].TotalRecords / $scope.RegionRow));
$scope.RegionPages = new Array();
for (i = 1; i <= $scope.RegionTotalPages; i++) {
$scope.RegionPages[i] = i;
}
} else {
$scope.RegionTotalPages = 0;
$scope.RegionPages = null;
}
});
};
HTML:
<div style="overflow-x: scroll; padding-right: 1px;">
<table class="table table-condensed" style="font-size: 85%; min-width: 650px;">
<thead>
<tr>
<th>Region</th>
<th>State</th>
<th>Neighborhoods</th>
<th>Locations</th>
<th>Revenue</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="region in Regions">
<td>{{region.RegionName}}</td>
<td>{{region.State}}</td>
<td>{{region.NeigborhoodCount}}</td>
<td>{{region.LocationCount}}</td>
<td>{{region.Revenue}}</td>
<td>
<span class="pull-right">
<a href="#regionDetailsModal" data-toggle="modal">Details</a> /
<!-- TODO Aamir Malcolm -- Please integrate link below -->
<a href="#addNeighborhoodModal" data-toggle="modal">Add a Neighborhood</a>
</span>
</td>
</tr>
</tbody>
</table>
</div>
<div class="row-fluid">
<a href="#addRegionModal" class="btn btn-pinkes span3" style="margin-top: 15px;" data-toggle="modal"><i class="icon-plus icon-white"></i> Add new</a>
<div class="span9 drmc" style="font-size: 85%;">
<button ng-click="GetAttributesByRegion(false,true)" class="btn btn-mini" id="btnBackwardTop" type="button"><i class="icon-arrow-left"></i></button>
Page
<select style="width: auto; margin-top: 10px;" ng-change="GetAttributesByRegion(false,false)" ng-model="RegionPage">
<option ng-repeat="regionPage in RegionPages">{{regionPage}}</option>
</select>
of {{RegionTotalPages}}
<button ng-click="GetAttributesByRegion(true,false)" class="btn btn-mini" id="btnForwardTop" type="button"><i class="icon-arrow-right"></i></button>
<select style="width: auto; margin-left: 5px; margin-top: 10px;" ng-change="GetAttributesByRegion(false,false)" ng-model="RegionRow">
<option ng-repeat="regionRow in RegionRows">{{regionRow}}</option>
</select>
</div>
</div>