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

Bootstrap table 服务器端分页功能实现方法示例

程序员文章站 2022-07-06 17:51:07
本文实例讲述了bootstrap table 服务器端分页功能实现方法。分享给大家供大家参考,具体如下:bootstrap版本 为 3.xbootstrap-table.min.cssbootstra...

本文实例讲述了bootstrap table 服务器端分页功能实现方法。分享给大家供大家参考,具体如下:

bootstrap版本 为 3.x

bootstrap-table.min.css
bootstrap-table-zh-cn.min.js
bootstrap-table.min.js

前端bootstrap+jquery,服务端使用spring mvc实现restful风格服务

前端代码块

<table id="test-table" class="col-xs-12" data-toolbar="#toolbar">

function inittable(){
  $('#test-table').bootstraptable({
    method: 'get',
    toolbar: '#toolbar',  //工具按钮用哪个容器
    striped: true,   //是否显示行间隔色
    cache: false,   //是否使用缓存,默认为true,所以一般情况下需要设置一下这个属性(*)
    pagination: true,   //是否显示分页(*)
    sortable: false,   //是否启用排序
    sortorder: "asc",   //排序方式
    pagenumber:1,   //初始化加载第一页,默认第一页
    pagesize: 10,   //每页的记录行数(*)
    pagelist: [10, 25, 50, 100], //可供选择的每页的行数(*)
    url: "/testproject/page4list.json",//这个接口需要处理bootstrap table传递的固定参数
    queryparamstype:'', //默认值为 'limit' ,在默认情况下 传给服务端的参数为:offset,limit,sort
              // 设置为 '' 在这种情况下传给服务器的参数为:pagesize,pagenumber

    //queryparams: queryparams,//前端调用服务时,会默认传递上边提到的参数,如果需要添加自定义参数,可以自定义一个函数返回请求参数
    sidepagination: "server",  //分页方式:client客户端分页,server服务端分页(*)
    //search: true,   //是否显示表格搜索,此搜索是客户端搜索,不会进服务端,所以,个人感觉意义不大
    strictsearch: true,
    //showcolumns: true,   //是否显示所有的列
    //showrefresh: true,   //是否显示刷新按钮
    minimumcountcolumns: 2,  //最少允许的列数
    clicktoselect: true,  //是否启用点击选中行
    searchonenterkey: true,
    columns: [{
      field: 'id',
      title: 'id',
      align: 'center'
    }, {
      field: 'testkey',
      title: '测试标识',
      align: 'center'
    }, {
      field: 'testname',
      title: '测试名字',
      align: 'center'
    },{
      field: 'id',
      title: '操作',
      align: 'center',
      formatter:function(value,row,index){
        //通过formatter可以自定义列显示的内容
        //value:当前field的值,即id
        //row:当前行的数据
        var a = '<a href="" >测试</a>';
      } 
    }],
    pagination:true
  });
}

在前端通过请求获取table数据时,bootstrap table会默认拼一个 searchtext的参数,来支持查询功能。

服务端代码

  @requestmapping(value = "/page4list.json")
  public void page4list(integer pagesize, integer pagenumber, string searchtext, httpservletrequest request,
      httpservletresponse response) {

    //搜索框功能
    //当查询条件中包含中文时,get请求默认会使用iso-8859-1编码请求参数,在服务端需要对其解码
    if (null != searchtext) {
      try {
        searchtext = new string(searchtext.getbytes("iso-8859-1"), "utf-8");
      } catch (exception e) {
        e.printstacktrace();
      }
    }
    //在service通过条件查询获取指定页的数据的list
    list<mwmsgtype> list = mwmsgqueueservice.page4list(pagesize, pagenumber, searchtext);
    //根据查询条件,获取符合查询条件的数据总量
    int total = mwmsgqueueservice.querycountbysearchtext(searchtext);
    //自己封装的数据返回类型,bootstrap-table要求服务器返回的json数据必须包含:totlal,rows两个节点
    pageresultforbootstrap page = new pageresultforbootstrap();
    page.settotal(total);
    page.setrows(list);
    //page就是最终返回给客户端的数据结构,可以直接返回给前端

    //下边这段,只是我自己的代码有自定义的spring handlerinterceptor处理返回值,可以忽略。
    request.setattribute(constants.pageresultdata, page);

  }

完成上述代码,即可实现服务器端自动分页,bootstrap-table根据服务器端返回的total,以及table设定的pagesize,自动生成分页的页面元素,每次点击下一页或者指定页码,bootstrap-table会自动给参数pagenumber赋值,服务器返回指定页的数据。

如果发送的是post请求,因为bootstap table使用的是ajax方式获取数据,这时会将请求的content type默认设置为 text/plain,这样在服务端直接通过 @requestparam参数映射是获取不到的。

这时就需要在bootstrap-table的参数列表中显式设置

contenttype: "application/x-www-form-urlencoded"

设置成form表单的形式,tomcat内部就会自动将requset payload中的数据部分解析放到request.getparameter()中,之后就可以直接通过@requestparam映射参数获取
post的处理参考了下面这个哥们的博文,在此感谢!

参考链接:

ps:关于bootstrap布局,这里再为大家推荐一款本站的在线可视化布局工具供大家参考使用:

在线bootstrap可视化布局编辑工具:

希望本文所述对大家基于bootstrap的程序设计有所帮助。