bootstrap table分页时,在其他页面无法查询到数据

问题描述:

使用bootstrap table时遇到一个小问题,第一次查询数据未5页,翻页到第5页后,选中条件再次查询数据时,传到后端页码仍旧为5,而此时数据量小于5页,表格显示为未查询到数据。

处理方式:
  使用bootstrap table的参数刷新方法(refreshOptions),在查询按钮刷新table发出数据请求时,将页码刷新回到1。

$('#tableName').bootstrapTable('refreshOptions',{pageNumber:1});

本文来自 小小初行者 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/a312024054/article/details/72677907?utm_source=copy

        // 查询  
		$("#search_btn").click(function() {
			table.bootstrapTable('refreshOptions',{pageNumber:1});
		});

你可能感兴趣的:(lb)