F5 上的 HTTP 发布

发布于 2024-12-03 18:57:53 字数 136 浏览 0 评论 0原文

为什么所有浏览器在刷新页面时默认行为是执行 HTTP POST?并提交表格。

这通常会导致众所周知的“您将提交此页面两次”之类的消息。 这可以很容易地(如果不注意的话)执行两次交易(比如说,如果你要买东西)。

这不是很奇怪吗?

Why is the default behavior of all the browsers to do HTTP POST when refreshing a page? And to submit the forms.

This often leads to the well-known 'you're going to submit this page twice' sort of message.
Which can easily(if not taken care of) execute a transcation twice (say if you're buying something).

Isn't this weird?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南七夏 2024-12-10 18:57:53

这是一种非常标准的行为,因为您正在访问的资源的状态是通过发布到创建的。

刷新页面应该重新启动页面的状态,因此需要发布。

大多数时候,使用 Post/Redirect/Get 模式更为理想向用户呈现的资源的状态不依赖于服务器发布。

It's a quite standard behaviour because the state of the resource you're visiting was created by being Posted to.

Refreshing the page should re-initiate the page's state and thus a post is required.

Most of the time it's more ideal to use the Post/Redirect/Get pattern so that users are presented with a resource who's state is not dependent on a server Post.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文