bootsrap分页插件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bootsrap分页插件相关的知识,希望对你有一定的参考价值。

$(function(){
$("#example1-0002").bootstrapTable({
/*data:data.columns,*/
url:"/checkActivemqList.do",
queryParams: queryParams,
method:"post",
contentType:"application/x-www-form-urlencoded",
striped: true,
cache: false,
pagination: true,
sidePagination: "server",
pageNumber: 1,
pageSize: 10,
pageList: [10, 25, 50, 100],
showColumns: true,
showRefresh: true,
//total:data.total,
columns: [{
checkbox: true,
align:"center",
},{
field: ‘queueName‘,
title: ‘队列名称‘
}, {
field: ‘message‘,
title: ‘消息内容‘
}],
locale:‘zh-CN‘,
responseHandler:function(res){
return {
"total":res.data.totalCount,
"rows":res.data.recordList,
};
},
onLoadError: function () {
alert("数据加载失败!");
},
onDblClickRow: function (row, $element) {

}
})

})


function queryParams(params){
var param = {
pageNumber: params.offset/params.limit+1,
pageSize: params.limit
};
return param;
}

 

以上是关于bootsrap分页插件的主要内容,如果未能解决你的问题,请参考以下文章

Mybatis分页插件:PageHelper和PageInfo

技术分享_MyBatisplus分页插件

MyBatis-Plus03_分页插件自定义分页

局部刷新的js分页插件

MyBatis学习总结_17_Mybatis分页插件PageHelper

MyBatis-Plus03_分页插件自定义分页