传统URL传递多参数使用?和拼接 a rel=nofollow th:href=/list?gender=1name=zhang列表/aa rel=nofollow th:href='/list?pageNum='+${pageNum}+'pageSize='+${pageSize}列表/a thymeleaf中href通过以下方式传递参数: 带一个参数
传统URL传递多参数使用?和&拼接
<a rel="nofollow" th:href="/list?gender=1&name=zhang">列表</a> <a rel="nofollow" th:href="'/list?pageNum='+${pageNum}+'&pageSize='+${pageSize}">列表</a>thymeleaf中href通过以下方式传递参数: