이 기사에서는 Baidu 페이징을 모방하기 위한 AngularJS 및 BootStrap의 샘플 코드를 주로 소개합니다. 페이지네이션은 여러 번 사용할 수 있으므로 참고용으로 제공합니다.
Baidu의 페이지당 10개 데이터 표시를 모방하고 현재 페이지를 중앙에 배치하는 알고리즘을 구현합니다.
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>BootStrap+AngularJS分页显示 </title> <script type="text/javascript" src="../js/jquery.js"></script> <script type="text/javascript" src="../js/bootstrap.js"></script> <link rel="stylesheet" href="../css/bootstrap/bootstrap.css" rel="external nofollow" /> <script type="text/javascript" src="../js/angular.min.js"></script> </head> <body ng-app="paginationApp" ng-controller="paginationCtrl"> <table class="table table-bordered"> <tr> <th>序号</th> <th>商品编号</th> <th>名称</th> <th>价格</th> </tr> <tr ng-repeat="product in products"> <td>{{$index+1}}</td> <td>{{product.id}}</td> <td>{{product.name}}</td> <td>{{product.price}}</td> </tr> </table> <p> <ul class="pagination pull-right"> <li> <a href ng-click="prev()">上一页</a> </li> <li ng-repeat="page in pageList" ng-class="{active: isActivePage(page)}"> <a href ng-click="selectPage(page)">{{page}}</a> </li> <li> <a href ng-click="next()">下一页</a> </li> </ul> </p> </body> <script type="text/javascript "> var paginationApp = angular.module("paginationApp", []); paginationApp.controller("paginationCtrl", ["$scope", "$http", function($scope, $http) {![现的效果](实现的效果1.jpg)![现的效果](实现的效果1.jpg) // 分页组件 必须变量 $scope.currentPage = 1; // 当前页 (请求数据) $scope.pageSize = 4; // 每页记录数 (请求数据) $scope.totalCount = 0; // 总记录数 (响应数据) $scope.totalPages = 0; // 总页数 (根据 总记录数、每页记录数 计算 ) // 要在分页工具条显示所有页码 $scope.pageList = new Array(); // 加载上一页数据 $scope.prev = function(){ $scope.selectPage($scope.currentPage-1); } // 加载下一页数据 $scope.next = function(){ $scope.selectPage($scope.currentPage+1); } // 加载指定页数据 $scope.selectPage = function(page) { // page 超出范围 if($scope.totalPages != 0 && (page < 1 || page > $scope.totalPages)){ return ; } $http({ method: 'GET', url: '6_'+page+'.json', params: { "page" : page , // 页码 "pageSize" : $scope.pageSize // 每页记录数 } }).success(function(data, status, headers, config) { // 显示表格数据 $scope.products = data.products; // 根据总记录数 计算 总页数 $scope.totalCount = data.totalCount; $scope.totalPages = Math.ceil($scope.totalCount / $scope.pageSize); // 更新当前显示页码 $scope.currentPage = page ; // 显示分页工具条中页码 var begin ; // 显示第一个页码 var end ; // 显示最后一个页码 // 理论上 begin 是当前页 -5 begin = $scope.currentPage - 5 ; if(begin < 1){ // 第一个页码 不能小于1 begin = 1 ; } // 显示10个页码,理论上end 是 begin + 9 end = begin + 9; if(end > $scope.totalPages ){// 最后一个页码不能大于总页数 end = $scope.totalPages; } // 修正begin 的值, 理论上 begin 是 end - 9 begin = end - 9; if(begin < 1){ // 第一个页码 不能小于1 begin = 1 ; } // 要在分页工具条显示所有页码 $scope.pageList = new Array(); // 将页码加入 PageList集合 for(var i=begin ; i<= end ;i++){ $scope.pageList.push(i); } }).error(function(data, status, headers, config) { // 当响应以错误状态返回时调用 alert("出错,请联系管理员 "); }); } // 判断是否为当前页 $scope.isActivePage = function(page) { return page === $scope.currentPage; } // 初始化,选中第一页 $scope.selectPage(1); } ]); </script> </html>
1_1
달성 효과는 다음과 같습니다.
문제 발생: 다음 코드에서 시작이 실수로 0으로 기록되면 아래 그림과 같이 페이지 번호에 0{ "totalCount":100, "products":[ {"id":"1001","name":"苹果手机","price":"5000"}, {"id":"1002","name":"三星手机","price":"6000"} ] }부터 시작하는 버그가 발생합니다
이유는 시작이 페이지에 표시된 첫 번째 페이지 번호입니다. i가 0부터 순회를 시작하면 pageList 배열의 첫 번째 요소는 0입니다. 따라서 다음과 같이 AngleJS에서 페이지 번호를 순회하는 과정에서 0부터 순회가 시작됩니다. 페이지에는 0
{ "totalCount":100, "products":[ {"id":"1001","name":"华为手机","price":"5000"}, {"id":"1002","name":"vivo手机","price":"6000"} ] }이 내용이 모두의 학습에 도움이 되기를 바랍니다. 웹사이트!
관련 권장 사항:
js 네이티브 및 Ajax 기반의 get 및 post 메서드 소개와 jsonp의 기본 작성 방법 소개Ajax의 기본 구현 MIME 유형 사용 정보
위 내용은 AngularJS와 BootStrap은 Baidu의 페이징 방법을 모방합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!