Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请帮助我进行搜索或过滤我的数据库中有记录我的搜索正在工作。目前有两件事不能相应地发挥作用:
在特定搜索(位置;业务单位;提交日期)后单击分页链接时,结果将更改为包括数据库中的所有空缺,并且不维护搜索条件。
职位空缺视图的排序也不维护搜索标准。
假设您在执行排序/分页请求时缺少传递搜索条件。PHP 是有状态的。它不会“记住”先前请求期间发生的事情,您必须使用 session 来记住搜索条件,并在需要时将它们应用于每个请求,或者将其与来自客户端的每个请求一起传递(可能是链接中的参数,search.php?location=searched_location&business=business_criteria例如您的情况,当页面更改或排序顺序更改时,您必须通过 ajax 请求的标准)
search.php?location=searched_location&business=business_criteria