欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Angularjs 实现分页功能及示例代码

程序员文章站 2022-04-24 16:36:50
基于angularjs实现分页 前言        学习任何一门语言前肯定是有业务需求来驱动你去学习它,...

基于angularjs实现分页

前言

       学习任何一门语言前肯定是有业务需求来驱动你去学习它,当然ng也不例外,在学习ng前我第一个想做的demo就是基于ng实现分页,除去基本的计算思路外就是使用指令封装成一个插件,在需要分页的列表页面内直接引用。

插件

      在封装分页插件时我实现了几种方式总体都比较零散,最后找到了一个朋友(http://www.miaoyueyue.com/archives/813.html)封装的插件,觉还不错,读了下他的源码就直接在项目中使用了。

原理和使用说明

      1、插件源码主要基于angular directive来实现。

      2、调用时关键地方是后台请求处理函数,也就是从后台取数据。

      3、插件有两个关键参数currentpage、itemsperpage,当前页码和每页的记录数。

      4、实现方法调用后我们需要根据每次点击分页插件页码时重新提交后台来获取相应页码数据。 在调用的页码中我使用了$watch来监控。  我初次使用时是把调用函数放在了插件的onchange中,结果发现每次都会触发两次后台。这个地方需要注意。

      5、我把请求后台封装成了service层,然后在controller里调用,也符合mvc思想。

效果图

Angularjs 实现分页功能及示例代码
 

调用代码

<div ng-app="demoapp" ng-controller="democontroller">
 <table class="table table-striped">
  <thead>
   <tr>
    <td>id</td>
    <td>firstname</td>
    <td>lastname</td>
    <td>status</td>
    <td>address</td>
   </tr>
  </thead>
  <tbody>
   <tr ng-repeat="emp in persons">
    <td>{{emp.id}}</td>
    <td>{{emp.firstname}}</td>
    <td>{{emp.lastname}}</td>
    <td>{{emp.status}}</td>
    <td>{{emp.address}}</td>
   </tr>
  </tbody>
 </table>
 <tm-pagination conf="paginationconf"></tm-pagination>
</div>
<script type="text/javascript">
 var app = angular.module('demoapp', ['tm.pagination']);
 
 app.controller('democontroller', ['$scope', 'businessservice', function ($scope, businessservice) {
 
  var getallemployee = function () {
 
   var postdata = {
    pageindex: $scope.paginationconf.currentpage,
    pagesize: $scope.paginationconf.itemsperpage
   }
 
   businessservice.list(postdata).success(function (response) {
    $scope.paginationconf.totalitems = response.count;
    $scope.persons = response.items;
   });
 
  }
 
  //配置分页基本参数
  $scope.paginationconf = {
   currentpage: 1,
   itemsperpage: 5
  };
 
  /***************************************************************
  当页码和页面记录数发生变化时监控后台查询
  如果把currentpage和itemsperpage分开监控的话则会触发两次后台事件。
  ***************************************************************/
  $scope.$watch('paginationconf.currentpage + paginationconf.itemsperpage', getallemployee);
 }]);
 
 
 //业务类
 app.factory('businessservice', ['$http', function ($http) {
  var list = function (postdata) {
   return $http.post('/employee/getallemployee', postdata);
  }
 
  return {
   list: function (postdata) {
    return list(postdata);
   }
  }
 }]);
</script>

 插件和demo下载

http://yunpan.cn/cqehnlrpnkniq  访问密码 be74

以上就是angularjs 实现分页功能的资料整理,后续继续补充相关资料,谢谢大家对本站的支持!