F5 上的 HTTP 发布
为什么所有浏览器在刷新页面时默认行为是执行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一种非常标准的行为,因为您正在访问的资源的状态是通过发布到创建的。
刷新页面应该重新启动页面的状态,因此需要发布。
大多数时候,使用 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.