我正在尝试使用expressjs处理多个页面以进行搜索,但似乎根本不起作用。 我有根和查询参数
/properties/search?location=London&page=0
我为下一页做了一个按钮,当我进行峰会时,我有多个查询参数
/properties/search?location=London&page=0&page=1&page=2
如何对页面进行单一查询,如:
/properties/search?location=London&page=0
/properties/search?location=London&page=1
/properties/search?location=London&page=3
这是我的代码
<a type="submit" name="page" value="<%= currentPage+1 %>">
<div class="ui animated button large" style="background-color:#F76C6C;" tabindex="0">
<div class="visible content">Next Page</div>
<div class="hidden content">
<i class="left arrow icon"></i>
</div>
</div>
</a>