Heim > Fragen und Antworten > Hauptteil
P粉8173547832023-08-30 09:58:46
我还想指出,您可以使用 JavaScript 方法 window.history.replaceState
来防止刷新和后退按钮时重新提交。
概念证明:https://dtbaker.net/files/ Prevent-post-resubmit.php(链接不再有效)
我仍然推荐 Post/Redirect/Get 方法,但这是一种新颖的 JS 解决方案。
P粉0434322102023-08-30 09:17:22
使用发布/重定向/获取模式。 http://en.wikipedia.org/wiki/Post/Redirect/Get
在我的网站上,我将在 cookie 或会话中存储消息,在发布后重定向,读取 cookie/会话,然后清除该会话或 cookie 变量的值。