bootstrap table 服务器端分页例子分享

前端之家收集整理的这篇文章主要介绍了bootstrap table 服务器端分页例子分享前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1,前台引入所需的js 可以从官网上下载

代码如下:
获取不了 url: url, cache: false, height: 400, striped: true, pagination: true, pageList: [10,20], // contentType: "application/x-www-form-urlencoded", pageSize:10, pageNumber:1, search: true, sidePagination:'server',//设置为服务器端分页 queryParams: queryParams,//参数 showColumns: true, showRefresh: true, minimumCountColumns: 2, clickToSelect: true, smartDisplay:true, columns: [ { field: 'interfaceInfoCode', title: '资金通道编码', align: 'center', width: '180', valign: 'bottom', sortable: true },{ field: 'retreatBatchCode', title: '资金退回批次号', width: '200', valign: 'middle',{ field: 'total', title: '总笔数', width: '10', valign: 'top',{ field: 'totalMoney', title: '总金额', width: '100', clickToSelect: false },{ title: '操作', field: 'state', }] }); } //设置传入参数 function queryParams(params) { return params } $(function(){ getTab(); })

2 后台

获取limit offset ,有些网站上 要格式化传入参数 获取pageSize,pageIndex 反正我是没有成功,如果知道 可以分享给我

代码如下:
获取页数 currentPage = currentPage / showCount; } currentPage += 1; JSONObject json = new JSONObject(); json.put("rows",bfrv); //这里的 rows 和total 的key 是固定的 json.put("total",total);

以上所述就是本文的全部内容了,希望小伙伴们能够喜欢。

原文链接:https://www.f2er.com/js/55810.html

猜你在找的JavaScript相关文章