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.
在我的 MVC spring 应用程序中,我使用 GET 方法将表单发送到页面以执行搜索。搜索结果是一个列表,并且对于每个条目都可以导航到详细信息页面。它工作正常。现在,我想在详细信息页面上有一个返回按钮,它应该返回到搜索列表。
我可以调用相同的控制器方法来重新评估,但它执行数据库调用,我不想这样做。什么是最好的解决方案?
您希望它执行数据库调用不是吗?如果数据已被不同的用户更改怎么办?
如果没有,您可以使用 javascript :
<input action="action" type="button" onclick="history.go(-1);" />