我正在通过 POST 实施部分更新,因为我无法使用 PATCH。我可以有条件地做吗?
所以业务要求我们实现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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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)