相思资源网 Design By www.200059.com
angularJs 的分页重点体现在对 过滤器 的使用。这个过滤器也并不复杂。
首先上 html 代码:
<!DOCTYPE html> <html ng-app="demoApp"> <head> <meta charset="utf-"> <meta name="viewport" content="width=device-width"> <title>demo</title> <link rel="stylesheet" href="demo.css"> </head> <body> <div ng-controller="demoCtrl"> <div> <ul> <li ng-repeat="sentences in demoLists[].name | paging:currentPage*listsPerPage | limitTo:listsPerPage">{{sentences}}</li> <!-- ng-repeat 动态生成模拟的数据 --> </ul> </div> <div> <a class="step prevLink" ng-click="prevPage()">上一页</a> <a ng-class="{true:'currentStep',false:'step'}[num==currentPage]" ng-repeat="num in pageNum" ng-click="setPage(num)">{{num+}}</a> <!-- ng-repeat 动态生成页码 --> <a class="step nextLink" ng-click="nextPage()">下一页</a> </div> </div> <script src="/UploadFiles/2021-04-02/angular.min.js">这里面用到了 ng-class,当前页 currentPage 等于页码 num 时,显示 currentStep 的样式,不等于时显示 step 的样式。
重点代码在 13 行,ng-repeat 模拟数据的时候加了过滤器,过滤器名字叫 paging 和一个 angular 自带的过滤 limitTo。
然后是 css 代码,没有什么可说的,主要是调样式。其中记得加上 ng-class 里的两个样式。
ul>li{ list-style:none; width:px; height:px; border:px solid #CAF; margin-bottom:px; padding-left:px; } .nextLink,.prevLink{ font-size: px; line-height: px; height: px; border: solid px #aaa; color: #; padding: px; margin: px; list-style: none; background: #fff; float: left; cursor: pointer; } a.prevLink:hover,a.nextLink:hover { background: #aaa !important; color: #fff !important; cursor: pointer; } .step { display: block; line-height: px; height: px; border: solid px #aaa; color: #; background: #fff; padding: px; font-size: px; float: left; margin: px; list-style: none; cursor: pointer; } .currentStep{ border-color: #fff; padding: px; color: #f; font-weight: bold; float: left; display: block; line-height: px; height: px; padding: px; font-size: px; float: left; margin: px; list-style: none; cursor: pointer; }最后就是 js 了
var demoApp = angular.module('demoApp',[]); demoApp.filter('paging',function(){ //paging 过滤器 return function(lists,start){ //两个参数 lists 是在 html 里你ng-repeat的原始数据: // start 也就是 paging 后面传的参数,即 currentPage*listsPerPage return lists.slice(start); //将原始数据按照 start 分割 }; }); demoApp.controller('demoCtrl',['$scope',function($scope){ //页面控制器 $scope.demoLists = [ //模拟数据 {name:['hello world','hello world again', 'why i say hello wrold', 'i dont know the reason', 'maybe because i am a developer.', 'thank you for reading this', 'why i say thank you', 'cause this stuff has nothing to do with your angularJs studying', 'these are just demo sentences.', 'Do not have any special meanings.', 'and you still take time to read this row by row', 'what could i say?', 'okay.maybe you wanna lenrn how json works.'] } ]; $scope.dataNum = $scope.demoLists[].name.length; //获得数据总个数 $scope.pages = Math.ceil($scope.dataNum/); //按照每页显示个数据,得到总页数 $scope.pageNum = []; //生成页码,在 html里 ng-repeat 出来 for(var i=;i<$scope.pages;i++){ $scope.pageNum.push(i); } $scope.currentPage = ; //设置当前页是 $scope.listsPerPage = ; //设置每页显示 个 $scope.setPage = function(num){ // 当点击页码数字时执行的函数 $scope.currentPage = num; //将当前页 设置为 页码数 } $scope.prevPage = function(){ //点击上一页执行的函数 if($scope.currentPage > ){ $scope.currentPage--; } } $scope.nextPage = function(){ //点击下一页执行的函数 if ($scope.currentPage < $scope.pages-){ $scope.currentPage++; } } }]);这中间要说一下,你生成的 pageNum 是从 0 开始的,但真正的 页码 都是从一开始,所以这也就是 html 里 18 行是 num +1 的缘故。
以上内容是小编给大家介绍的AngularJs实现分页功能不带省略号的代码,希望能够帮助到大家,如果大家想了解更多有关angularjs的知识敬请关注网站!
相思资源网 Design By www.200059.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
相思资源网 Design By www.200059.com
暂无AngularJs实现分页功能不带省略号的代码的评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。