首頁 >web前端 >js教程 >bootstrap table 伺服器端分頁範例分享_jquery

bootstrap table 伺服器端分頁範例分享_jquery

WBOY
WBOY原創
2016-05-16 16:14:521609瀏覽

1,前台引入所需的js 可以從官網上下載

複製程式碼 程式碼如下:

function getTab(){
var url = contextPath '/fundRetreatVoucher/fundBatchRetreatVoucherQuery.htm';
$('#tab').bootstrapTable({
method: 'get', //這裡要設定為get,不知道為什麼 設定post取得不了
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: '資金退回批號',
align: 'center',
width: '200',
valign: 'middle',
sortable: true
}, {
field: 'total',
title: '總筆數',
align: 'center',
width: '10',
valign: 'top',
sortable: true
}, {
field: 'totalMoney',
title: '總金額',
align: 'center',
width: '100',
valign: 'middle',
clickToSelect: false
}, {
title: '操作',
field: 'state',
align: 'center',
width: '200',
valign: 'middle',
}]
});
}
//設定傳入參數
function queryParams(params) {
  return params
}
$(function(){
getTab();
})

2 後台

取得limit offset ,有些網站上 要格式化傳入參數 取得pageSize,pageIndex 反正我是沒有成功,如果知道可以分享給我

複製程式碼 程式碼如下:

int currentPage = request.getParameter("offset") == null ? 1 : Integer.parseInt(request.getParameter("offset"));
  // 每頁行數
  int showCount = request.getParameter("limit") == null ? 10 : Integer.parseInt(request.getParameter("limit"));/
  if (currentPage != 0) {// 取得頁數
   currentPage = currentPage / showCount;
  }
  currentPage = 1;
  JSONObject json = new JSONObject();
  json.put("rows", bfrv); //這裡的 rows 和total 的key 是固定的
  json.put("total", total);

以上所述就是本文的全部內容了,希望小夥伴們能夠喜歡。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn