使用分块编码返回响应时出现错误代码重定向?

发布于 2024-11-02 03:36:29 字数 140 浏览 2 评论 0原文

我的 Web 应用程序使用分块编码。我希望有这样的行为:如果任何块生成错误,我可以正确设置错误代码并使用它重定向到错误页面。现在看来,只有在第一个块期间发生错误时才会发生这种情况,因为响应标头必须在第一个块中发送。有什么办法可以让这个工作或得到我想要的行为吗?谢谢。

My web application uses chunked encoding. I'd like to have the behavior where if any chunk generates an error, I can properly set the error code and redirect to an error page using that. Right now it seems like that can only happen if the error occurs during the first chunk because the response headers must be sent in the first chunk. Is there any way to make this work or get the behavior that I want? Thanks.

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

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

发布评论

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

评论(1

最初的梦 2024-11-09 03:36:29

HTTP 规范允许您在最后一个块之后提供额外的标头作为“预告片”,应将其视为响应顶部的标头:

https://www.rfc-editor.org/rfc/rfc2616#section-3.6.1

这是一个示例:

http://www.jmarshall.com/easy/http/#http1.1c2

The HTTP spec allows you to provide additional headers as a "trailer" after your last chunk, which should be treated just like headers at the top of the response:

https://www.rfc-editor.org/rfc/rfc2616#section-3.6.1

Here's an example:

http://www.jmarshall.com/easy/http/#http1.1c2

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