bootstrapTable分页记录数选择All的bug

1.表格分页记录数选择All

bootstrapTable分页记录数选择All的bug_第1张图片

2.新添加一个用户

bootstrapTable分页记录数选择All的bug_第2张图片

3.新添加的用户未显示

bootstrapTable分页记录数选择All的bug_第3张图片

4.前台传给后台的参数limit只有5条(一开始显示的全部记录数)

bootstrapTable分页记录数选择All的bug_第4张图片

5.找到分页记录数为All的位置

bootstrapTable分页记录数选择All的bug_第5张图片

6.判断是否为All,为All修改limit参数

function ajaxUserRequest(params) {
    // params是bootstrap-table自带的参数,里面有
    // limit 每页记录数
    // offset 已查询的记录数
    // order 排序(升序还是降序)
    // search 搜索(要搜索的内容)
    // sort 要排序的字段
    // 判断分页记录选择的是ALL,把params的limit设成int类型的最大值
    if("All" == $(".page-size").text()) {
        params.data.limit = 2147483647;
    }
}

你可能感兴趣的:(前端,bootstrap,table)