zoukankan      html  css  js  c++  java
  • Angular.js实现分页

    一、编写angularJS实现的分页js(网上搜)和样式表(pagination),并在页面引入

    二、编写变量和方法

    //分页控件控制
                $scope.paginationConf={
                        currentPage:1,  //当前页
                        totalItems:10,  //总记录数
                        itemsPerPage:10,  //每页记录数
                        perPageOptions:[10,20,30,40,50], //分页选项
                        onChange:function(){ //当页码变更后自动触发的方法
                            $scope.reloadList();
                        }
                };
                //刷新列表
                $scope.reloadList=function(){
                    $scope.findPage($scope.paginationConf.currentPage,$scope.paginationConf.itemsPerPage);
                };
                $scope.findPage=function(page,size){
                    $http.get('../brand/getBrandByPage.do?page='+page+'&size='+size).success(//后台基于pageHelper实现的分页数据获取
                            function(res){
                                $scope.list = res.rows;//显示当前页数据
                                $scope.paginationConf.totalItems=res.total;//更新总记录数
                            }        
                        )
                }

    三、引入分页变量

                            <tm-pagination conf="paginationConf"></tm-pagination>

    页面

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <title>品牌管理</title>
        <meta content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no" name="viewport">
        <link rel="stylesheet" href="../plugins/bootstrap/css/bootstrap.min.css">
        <link rel="stylesheet" href="../plugins/adminLTE/css/AdminLTE.css">
        <link rel="stylesheet" href="../plugins/adminLTE/css/skins/_all-skins.min.css">
        <link rel="stylesheet" href="../css/style.css">
        <script src="../plugins/jQuery/jquery-2.2.3.min.js"></script>
        <script src="../plugins/bootstrap/js/bootstrap.min.js"></script>
    
        <script type="text/javascript" src="../plugins/angularjs/angular.min.js"></script>
        <script type="text/javascript" src="../plugins/angularjs/pagination.js"></script>
        
        <link rel="stylesheet" href="../plugins/angularjs/pagination.css"/>
        <script type="text/javascript">
            var app = angular.module('eshop',['pagination']);
            app.controller('brandController',function($scope,$http){
                //获取查询数据
                $scope.findAll= function(){
                    $http.get('../brand/getAllBrand.do').success(
                        function(res){
                            $scope.list = res;
                        }        
                    )
                };
                
                //分页控件控制
                $scope.paginationConf={
                        currentPage:1,  //当前页
                        totalItems:10,  //总记录数
                        itemsPerPage:10,  //每页记录数
                        perPageOptions:[10,20,30,40,50], //分页选项
                        onChange:function(){ //当页码变更后自动触发的方法
                            $scope.reloadList();
                        }
                };
                //刷新列表
                $scope.reloadList=function(){
                    $scope.findPage($scope.paginationConf.currentPage,$scope.paginationConf.itemsPerPage);
                };
                $scope.findPage=function(page,size){
                    $http.get('../brand/getBrandByPage.do?page='+page+'&size='+size).success(
                            function(res){
                                $scope.list = res.rows;//显示当前页数据
                                $scope.paginationConf.totalItems=res.total;//更新总记录数
                            }        
                        )
                }
            });
        </script>
    </head>
    <body class="hold-transition skin-red sidebar-mini" ng-app="eshop" ng-controller="brandController" >
      <!-- .box-body -->
                        <div class="box-header with-border">
                            <h3 class="box-title">品牌管理</h3>
                        </div>
    
                        <div class="box-body">
    
                            <!-- 数据表格 -->
                            <div class="table-box">
    
                                <!--工具栏-->
                                <div class="pull-left">
                                    <div class="form-group form-inline">
                                        <div class="btn-group">
                                            <button type="button" class="btn btn-default" title="新建" data-toggle="modal" data-target="#editModal" ><i class="fa fa-file-o"></i> 新建</button>
                                            <button type="button" class="btn btn-default" title="删除" ><i class="fa fa-trash-o"></i> 删除</button>           
                                            <button type="button" class="btn btn-default" title="刷新" onclick="window.location.reload();"><i class="fa fa-refresh"></i> 刷新</button>
                                        </div>
                                    </div>
                                </div>
                                <div class="box-tools pull-right">
                                    <div class="has-feedback">
                                                                         
                                    </div>
                                </div>
                                <!--工具栏/-->
    
                                  <!--数据列表-->
                                  <table id="dataList" class="table table-bordered table-striped table-hover dataTable">
                                      <thead>
                                          <tr>
                                              <th class="" style="padding-right:0px">
                                                  <input id="selall" type="checkbox" class="icheckbox_square-blue">
                                              </th> 
                                              <th class="sorting_asc">品牌ID</th>
                                              <th class="sorting">品牌名称</th>                                          
                                              <th class="sorting">品牌首字母</th>                                                         
                                              <th class="text-center">操作</th>
                                          </tr>
                                      </thead>
                                      <tbody>
                                          <tr ng-repeat="entity in list">
                                              <td><input  type="checkbox" ></td>                                          
                                              <td>{{entity.id}}</td>
                                              <td>{{entity.name}}</td>                                         
                                              <td>{{entity.firstChar}}</td>                                         
                                              <td class="text-center">                                           
                                                   <button type="button" class="btn bg-olive btn-xs" data-toggle="modal" data-target="#editModal"  >修改</button>                                           
                                              </td>
                                          </tr>
                                      </tbody>
                                  </table>
                                  <!--数据列表/-->                        
                                  
                                 
                            </div>
                            <!-- 数据表格 /-->
                            <tm-pagination conf="paginationConf"></tm-pagination>
                            
                            
                            
                         </div>
                        <!-- /.box-body -->
             
    <!-- 编辑窗口 -->
    <div class="modal fade" id="editModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
      <div class="modal-dialog" >
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
                <h3 id="myModalLabel">品牌编辑</h3>
            </div>
            <div class="modal-body">        
                <table class="table table-bordered table-striped"  width="800px">
                      <tr>
                          <td>品牌名称</td>
                          <td><input  class="form-control" placeholder="品牌名称" >  </td>
                      </tr>                  
                      <tr>
                          <td>首字母</td>
                          <td><input  class="form-control" placeholder="首字母">  </td>
                      </tr>                  
                 </table>                
            </div>
            <div class="modal-footer">                        
                <button class="btn btn-success" data-dismiss="modal" aria-hidden="true">保存</button>
                <button class="btn btn-default" data-dismiss="modal" aria-hidden="true">关闭</button>
            </div>
          </div>
        </div>
    </div>
       
    </body>
    </html>
  • 相关阅读:
    ffmpeg 简单使用总结
    使用 Solr 构建企业级搜索服务器
    Linux 常用命令整理
    基于.net standard 的动态编译实现
    基于.net core 微服务的另类实现
    Java中线程总结
    关于EF中直接执行sql语句的参数化问题
    一个关于单据审核的流程演变
    java中匿名内部类总结
    Eclipse 中打开选中文件/文件夹所在目录
  • 原文地址:https://www.cnblogs.com/flgb/p/10171802.html
Copyright © 2011-2022 走看看