当添加对象的 POST 方法失败时,我应该返回哪个 HttpStatusCode

发布于 2024-11-18 12:40:21 字数 91 浏览 1 评论 0原文

当添加对象的 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 技术交流群。

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

发布评论

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

评论(1

§对你不离不弃 2024-11-25 12:40:21

这取决于失败的原因。如果由于客户端执行错误而失败(即尝试 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.

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