超时的正确错误代码是什么?

huangapple go评论62阅读模式
英文:

What is the correct error code for timeout?

问题

在错误页面中,您可以使用HTTP状态码"408 Request Timeout"(请求超时)来表示页面超时。这将向用户传达页面超时的信息,因为您希望出于安全目的添加超时功能,这个状态码是一个合适的选择。

英文:

I am developing a website and it will display a page for 5 minutes and user will be redirected to an error page which ask them to refresh the page. What status code should I put in the error page?

I am expecting the suitable error code to be displayed in the error page.

Edit: The page is displaying sensitive information so I want to add a timeout for security purpose.

答案1

得分: -1

你可以在这里找到HTTP响应代码:https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client_error_responses

根据你的操作,可能会发送408(请求超时)或504(网关超时)的代码。

如果你能更详细地解释一下你的问题,我们可能能够提供更好的指导。祝一切顺利。

英文:

You can find HTTP response codes here: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client_error_responses

Depending of what are doing, you might send a code 408 (request time) or 504 (gateway timeout)

If you explain a bit more of your problem, it might be possible to give you better orientation. Regards

huangapple
  • 本文由 发表于 2023年3月1日 10:46:27
  • 转载请务必保留本文链接:https://go.coder-hub.com/75599141.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定