解决翻页时丢失高级查询数据问题

造成的原因:翻页时,会重新发一次请求,该请求和高级查询表单没有关系

<a href="/pro?currentPage=${pageResult.nextPage}">下页</a>

发现:该请求中的参数只有一个currentPage,没有高级查询表单中的name,minPrice等。

解决方案:使用js解决:在翻页的时候:

                 同时提交高级查询表单参数 和 当前第几页

  <a href="javasript:go(1);">首页</a>
        <a href="javascript:go(${pageResult.prevPage});">上页</a>
        
        <c:forEach begin="${pageResult.beginIndex}" end="${pageResult.endIndex}" var="pageNumber">
           <c:if test="${pageNumber!=pageResult.currentPage}">
              <a href="javascript:go(${pageNumber});">${pageNumber}</a>
           </c:if>
           <c:if test="${pageNumber==pageResult.currentPage}">
              <span style="font:bold;">
                 ${pageNumber}
              </span>
           </c:if>
        </c:forEach>
         <a href="javascript:go(${pageResult.nextPage});">下页</a>
        <a href="javascript:go(${pageResult.totalPage});">末页</a>
                     当前第${pageResult.currentPage}/${pageResult.totalPage}页,
                     一共${pageResult.totalCount}条数据    
                   跳转到<input type="number" min="1" max="${pageResult.totalPage}" value="${pageResult.currentPage}" style="width:50px" name="currentPage" id="currentPage"/>页
             <input type="button" value="GO" onclick="go();">      
                  每页
          <select name="pageSize" onchange="go();" >
          <c:forEach items="${pageResult.pageItems}" var="item">
             <option ${item==pageResult.pageSize ? "selected" : "" }>${item} </option>
          </c:forEach>
          </select> 条数据  

 

<script type="text/javascript">
   function go(pageNo){
	   //把需要跳转的页码设置到<input type="number" name="currentPage"/>上
	   document.getElementById("currentPage").value=pageNo;
	   document.forms[0].submit();
   }

</script>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值