bootstrapTable分页时删除最后一页所有数据refresh刷新后无数据数据为空

在bootstrap-table中,如当页面中含有3页数据的时候,如果删除最后一页的所有数据,那么刷新后当前页面还会停留在第三页,但是页面中没有数据,正确的显示应该是显示第二页的数据

解决办法是修改bootstrap-table.js源码,如下

function (res) {
    /**新加的代码,top*/
    if(that.options.pagination&&res.total&&!res.rows.length){//总记录数大于0,但当前页记录数为0,则此时页码超过了最大页码误
        that.options.pageNumber = Math.ceil(res.total/that.options.pageSize);//最后一页(总页数)
        that.initServer();
        return;
    }
    /**新加的代码,end*/
    res = calculateObjectValue(that.options, that.options.responseHandler, [res], res);
    that.load(res);
    that.trigger('load-success', res);
}

 

你可能感兴趣的:(个人总结)