当添加对象的 POST 方法失败时,我应该返回哪个 HttpStatusCode
当添加对象的 POST 方法失败时,我应该返回哪个 HttpStatusCode?
这可能是由于数据库连接问题、代码错误、无效数据或任何其他原因造成的。
Which HttpStatusCode should I return when a POST method to add an object fails?
It could be due to a db connectivity issue, a code bug, invalid data, or any other reason.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于失败的原因。如果由于客户端执行错误而失败(即尝试 POST 重复项,或尝试 POST 格式不正确的数据),那么您应该使用 400(在某些特殊情况下您可能会使用特定的 4xx)。如果这是服务器代码中的错误(意外异常或 ASSERT 失败),那么您应该使用 500。有关 HTTP 状态代码及其含义的更多信息 阅读规范。
That depends on why it failed. If it failed because the client did something wrong (i.e. tried to POST a duplicate, or tried to POST incorrectly formatted data), then you should use 400 (there are a few special cases where you might use a specific 4xx instead). If it's a bug in your server code (an unexpected exception or an ASSERT failing), then you should use 500. For more information on HTTP status codes and their meanings read the spec.