PUT 和 POST 之间的技术差异是什么?

发布于 2024-12-19 04:00:07 字数 47 浏览 0 评论 0原文

抛开 PUT 和 POST 的语义、含义、正确和常见用例(已经讨论过多次(例如

Leaving aside semantics, meanings, proper and common use cases of PUT and POST (which had been already discussed many times (e.g. here)), what are the technical differences (the way what and how is being sent) between PUT and POST?

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

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

发布评论

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

评论(1

冷默言语 2024-12-26 04:00:07

除了请求中使用的名称不同之外,POST 和 PUT 之间绝对没有区别:

POST /resource

与:

PUT /resource/1

由于 PUT 是幂等的,因此某些路由器/代理可能会以不同的方式对待它们,但我不知道有任何此类情况。

There is absolutely no difference between POST and PUT except different name used in request:

POST /resource

vs.:

PUT /resource/1

Since PUT is idempotent, some routers/proxies might treat them differently, but I am not aware of any such cases.

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