我想页面添加到我的名单。 我跟着AngularJS教程,关于智能手机之一,我想只显示一定数量的对象。 这里是我的html文件:
<div class='container-fluid'>
<div class='row-fluid'>
<div class='span2'>
Search: <input ng-model='searchBar'>
Sort by:
<select ng-model='orderProp'>
<option value='name'>Alphabetical</option>
<option value='age'>Newest</option>
</select>
You selected the phones to be ordered by: {{orderProp}}
</div>
<div class='span10'>
<select ng-model='limit'>
<option value='5'>Show 5 per page</option>
<option value='10'>Show 10 per page</option>
<option value='15'>Show 15 per page</option>
<option value='20'>Show 20 per page</option>
</select>
<ul class='phones'>
<li class='thumbnail' ng-repeat='phone in phones | filter:searchBar | orderBy:orderProp | limitTo:limit'>
<a href='#/phones/{{phone.id}}' class='thumb'><img ng-src='{{phone.imageUrl}}'></a>
<a href='#/phones/{{phone.id}}'>{{phone.name}}</a>
<p>{{phone.snippet}}</p>
</li>
</ul>
</div>
</div>
</div>
我以限制将要显示的项目数增加了一些值的选择标记。 我现在想要的是添加的分页显示,未来5,10,等等。
我有一个控制器,这个工作:
function PhoneListCtrl($scope, Phone){
$scope.phones = Phone.query();
$scope.orderProp = 'age';
$scope.limit = 5;
}
同时,我有一个模块,以获取从JSON文件中的数据。
angular.module('phonecatServices', ['ngResource']).
factory('Phone', function($resource){
return $resource('phones/:phoneId.json', {}, {
query: {method: 'GET', params:{phoneId:'phones'}, isArray:true}
});
});
如果你还没有太多的数据,你绝对可以通过只存储在浏览器中的所有数据和过滤什么是在某一时间可见做分页。
这里有一个简单的分页例如: http://jsfiddle.net/2ZzZB/56/
这例子是在angular.js GitHub的维基小提琴的名单,这应该是有帮助的: https://github.com/angular/angular.js/wiki/JsFiddle-Examples
编辑: http://jsfiddle.net/2ZzZB/16/到http://jsfiddle.net/2ZzZB/56/ (将不显示“1 / 4.5”,如果有45个结果)
我只是做了的jsfiddle,通过使用构建每一列与Twitter的引导代码显示分页+搜索+顺序: http://jsfiddle.net/SAWsA/11/
我已经建立了一个模块,使内存分页难以置信的简单。
它允许用户通过简单地更换进行分页ng-repeat
与dir-paginate
,指定每页的项目作为管道过滤器,然后丢弃控制无论你在一个单一的指令的形式,像<dir-pagination-controls>
要利用原有例如通过Tomarto问,它应该是这样的:
<ul class='phones'>
<li class='thumbnail' dir-paginate='phone in phones | filter:searchBar | orderBy:orderProp | limitTo:limit | itemsPerPage: limit'>
<a href='#/phones/{{phone.id}}' class='thumb'><img ng-src='{{phone.imageUrl}}'></a>
<a href='#/phones/{{phone.id}}'>{{phone.name}}</a>
<p>{{phone.snippet}}</p>
</li>
</ul>
<dir-pagination-controls></dir-pagination-controls>
没有必要在你的控制器的任何特殊分页代码。 这都是由模块内部处理。
演示: http://plnkr.co/edit/Wtkv71LIqUR4OhzhgpqL?p=preview
来源: GitHub上的dirPagination
我知道这个线程现在是老了,但我回答的是要保持事情有点更新。
具有角1.4以上就可以直接使用limitTo滤波器,其除了接受limit
参数还接受begin
参数。
用法{{ limitTo_expression | limitTo : limit : begin}}
{{ limitTo_expression | limitTo : limit : begin}}
所以,现在你可能不需要使用任何第三方库,以实现类似分页。 我创建了一个小提琴来说明相同。
看看这个指令: https://github.com/samu/angular-table
它自动排序和分页了很多,给你足够的自由定制你的表/列表不过你想要的。
这里是一个演示代码,其中有分页+过滤与AngularJS:
https://codepen.io/lamjaguar/pen/yOrVym
JS:
var app=angular.module('myApp', []);
// alternate - https://github.com/michaelbromley/angularUtils/tree/master/src/directives/pagination
// alternate - http://fdietz.github.io/recipes-with-angular-js/common-user-interface-patterns/paginating-through-client-side-data.html
app.controller('MyCtrl', ['$scope', '$filter', function ($scope, $filter) {
$scope.currentPage = 0;
$scope.pageSize = 10;
$scope.data = [];
$scope.q = '';
$scope.getData = function () {
// needed for the pagination calc
// https://docs.angularjs.org/api/ng/filter/filter
return $filter('filter')($scope.data, $scope.q)
/*
// manual filter
// if u used this, remove the filter from html, remove above line and replace data with getData()
var arr = [];
if($scope.q == '') {
arr = $scope.data;
} else {
for(var ea in $scope.data) {
if($scope.data[ea].indexOf($scope.q) > -1) {
arr.push( $scope.data[ea] );
}
}
}
return arr;
*/
}
$scope.numberOfPages=function(){
return Math.ceil($scope.getData().length/$scope.pageSize);
}
for (var i=0; i<65; i++) {
$scope.data.push("Item "+i);
}
// A watch to bring us back to the
// first pagination after each
// filtering
$scope.$watch('q', function(newValue,oldValue){ if(oldValue!=newValue){
$scope.currentPage = 0;
}
},true);
}]);
//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);
}
});
HTML:
<div ng-app="myApp" ng-controller="MyCtrl">
<input ng-model="q" id="search" class="form-control" placeholder="Filter text">
<select ng-model="pageSize" id="pageSize" class="form-control">
<option value="5">5</option>
<option value="10">10</option>
<option value="15">15</option>
<option value="20">20</option>
</select>
<ul>
<li ng-repeat="item in data | filter:q | startFrom:currentPage*pageSize | limitTo:pageSize">
{{item}}
</li>
</ul>
<button ng-disabled="currentPage == 0" ng-click="currentPage=currentPage-1">
Previous
</button> {{currentPage+1}}/{{numberOfPages()}}
<button ng-disabled="currentPage >= getData().length/pageSize - 1" ng-click="currentPage=currentPage+1">
Next
</button>
</div>