加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

bootstrap-table 分页的问题

发布时间:2020-12-17 20:59:53 所属栏目:安全 来源:网络整理
导读:问题1 :服务器端取不到form值,querystring没有问题, 但是request.form取不到值 ? ?解决:这是ajax的问题,原代码使用原生的ajax。 ? 1可以用读流文件解决。2 如果想用request.form 方式,设置? contentType: "application/x-www-form-urlencoded", ? ? ?

问题1 :服务器端取不到form值,querystring没有问题, 但是request.form取不到值

? ?解决:这是ajax的问题,原代码使用原生的ajax。 ? 1可以用读流文件解决。2 如果想用request.form 方式,设置? contentType: "application/x-www-form-urlencoded",

? ? ? 如

?$('#tableList').bootstrapTable({
method: 'post',
url: "",
height: $(window).height() - 200,
striped: true,
dataType: "json",
pagination: true,
"queryParamsType": "limit",
singleSelect: false,
contentType: "application/x-www-form-urlencoded",sans-serif; line-height:18px"> ?

2 设置传递到服务器的参数

方法:

function queryParams(params) {

return {
pageSize: params.limit,sans-serif; line-height:18px"> pageNumber: params.pageNumber,sans-serif; line-height:18px"> UserName: 4

};

}

queryParams: queryParams,sans-serif; line-height:18px"> 3 后台取不到?pageSize 信息

? 解决:1在queryParams中设置

? 2 ?在bootstrap-table.minjs文件 修改源文件为"limit"===this.options.queryParamsType&&(e={limit:e.pageSize,pageNumber:e.pageNumber,sans-serif; line-height:18px"> ? ? 修改?bootstrap-table.js 也可以

if (this.options.queryParamsType === 'limit') {
params = {
search: params.searchText,
sort: params.sortName,
order: params.sortOrder
};
if (this.options.pagination) {
params.limit = this.options.pageSize;

params.pageNumber=this.options.pageNumber,
params.offset = this.options.pageSize * (this.options.pageNumber - 1);
}
}

配置加入? "queryParamsType": "limit",sans-serif; line-height:18px"> ?完整?

<script type="text/javascript">



$(document).ready(function() {
?$('#tableList').bootstrapTable({
method: 'post',
url: "getcompapylist",
pageSize: 10,
pageNumber:1,
search: false,//不显示 搜索框
showColumns: false,//不显示下拉框(选择显示的列)
sidePagination: "server",//服务端请求
queryParams: queryParams,
//minimunCountColumns: 2,
responseHandler: responseHandler,
columns: [
{
field: 'CompanyId',sans-serif; line-height:18px"> checkbox: true

},
{
field: 'qq',sans-serif; line-height:18px"> title: 'qq',sans-serif; line-height:18px"> width: 100,sans-serif; line-height:18px"> align: 'center',sans-serif; line-height:18px"> valign: 'middle',sans-serif; line-height:18px"> sortable: false

}
,
{
field: 'companyName',sans-serif; line-height:18px"> title: '姓名',sans-serif; line-height:18px"> }
]
});

});
function responseHandler(res) {


if (res.IsOk) {
var result = b64.decode(res.ResultValue);

var resultStr = $.parseJSON(result);
return {
"rows": resultStr.Items,
"total": resultStr.TotalItems
};

} else {
return {
"rows": [],
"total": 0
};
}

//传递的参数

}
</script>

? ? ? 4 ? 分页后,重新搜索的问题

前提: 自定义搜索且有分页功能,比如搜索产品名的功能.

现象:当搜索充气娃娃的时候返回100条记录,翻到第五页. ?这时候搜索按摩棒,数据有200条,结果应该是第一页的记录,但是实际显示的还是第五页的结果. ?也就是重新搜索后,pagenumber没有变.

解决:重新设置option就行了.

?function search(){

?$('#tableList').bootstrapTable({pageNumber:1,pageSize:10});

}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读