我有一个名为 test_photo.php 的页面,人们在执行 POST 请求后会从表单中定向到该页面
<form id="search_photos" action="test_photo.php" method="post">
<select name="photographer" id="photographer">
<option selected="selected" value="x">Any Photographer</option>
</select>
<--Removed for clarity sake -->
<input name="Submit" value="Search Now >" id="Submit" type="submit">
</form>
在我们发布到 (test_photo.php) 的页面上,我们有分页来帮助分解显示的大量数据。这是由 GET 请求处理的,url 可能类似于http://foobar.com/xpath/test_photo.php?page=0。
问题是每当有人在页面上执行获取请求时,POST 数据就会消失。有谁知道我们可以解决这个问题的任何方法。