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.
当我在数据表中显示搜索到的数据并单击数据表中的链接转到另一个页面时,当我单击浏览器后退按钮时,它要求重新提交。(即重新发送)。我需要留在我单击链接的数据表页面中。
在提交表单时遵循 Redirect-after-POST 模式被认为是一种很好的做法,这样您就可以在用户按下返回按钮时避免“确认表单重新提交”的情况。
我不熟悉 Spring MVC 的工作原理,但基本思想是,在用户提交表单并处理它之后,将用户重定向到下一个 url,例如,这可能是一个成功页面。
以下是一些 SO 问题,可能会为您提供专门针对 Spring MVC 的示例: