我正在通过 POST 实施部分更新,因为我无法使用 PATCH。我可以有条件地做吗?

发布于 2024-12-01 23:12:02 字数 179 浏览 1 评论 0原文

所以业务要求我们实现Partial Updates。 HTTP PUT 仅适用于客户端发送资源的完整表示的情况。

因此我决定使用 catch-all HTTP POST 来实现相同的功能。问题是,我仍然可以使用 ETag 和 Last-Modifieds 安全地处理条件更新吗?或者 Http 规范是否以任何方式阻止我这样做?

So the business requires us to implement Partial Updates.
HTTP PUT only caters to the case where the client sends across a complete representation of the resource.

Hence I decided to use the catch-all HTTP POST to implement the same. Question is, can I still safely take care of Conditional Updates using ETags and Last-Modifieds? Or does the Http Spec prevent me from doing so in any way?

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

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

发布评论

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

评论(1

记忆之渊 2024-12-08 23:12:02

a) 为什么你认为你不能使用PATCH?

b) 从 HTTP 的角度来看,条件标头适用于所有方法。然而,现有的服务器可能无法做到这一点,所以我在依赖它们时要小心。 (例如,参见 http://trac.tools.ietf.org /wg/httpbis/trac/ticket/96)

a) Why do you think you can't use PATCH?

b) From the HTTP point of view, the conditional headers apply to all methods. However, there may be existing servers not getting this right, so Id be careful with relying on them. (see, for instance, http://trac.tools.ietf.org/wg/httpbis/trac/ticket/96)

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