如何通过跨域ajax获取响应头?

发布于 2024-11-09 02:58:10 字数 334 浏览 0 评论 0原文

我正在尝试阅读文档,但我必须承认这不是一件容易阅读的事情。我没有问题(添加 Access-Control-Allow-Origin 标头后)读取responseText,但无法在除 Firefox 之外的任何地方获取响应标头。

所以,我的问题是使用跨域 ajax 获取响应标头的正确方法是什么?

我尝试使用 (Access-Control-Expose-Headers),但是,再次未能读取标题。

I'm trying to read documentation and I must confess it is not an easy reading. I have no problem (after adding Access-Control-Allow-Origin header) to read responseText, but fail to get response header anywhere except Firefox.

So, my question is what is the right way to get response header, using cross-domain ajax?

I've tried to use (Access-Control-Expose-Headers), but, again, failed to read header.

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

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

发布评论

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

评论(2

梦晓ヶ微光ヅ倾城 2024-11-16 02:58:10

因此,它应该工作的方式是您在 Access-Control-Expose-Headers 标头中指定您希望客户端有权访问的标头。例如,如果您的服务器设置了 Foo 响应标头,并且您希望客户端能够读取它,那么您的服务器还应该发送以下标头:

Access-Control-Expose-Headers: Foo

在客户端,您可以通过调用 xhr.getAllResponseHeaders 读取所有响应标头()。这会将响应标头作为字符串返回,然后您可以使用以下代码将其解析为对象: https:// gist.github.com/706839

这是对事物应该如何工作的解释。但是,请注意,旧版浏览器中存在一个错误,即无法在客户端上读取响应标头。有关更多详细信息,请参阅此处:CORS xmlhttprequest HEAD 方法

So the way it should work is that you specify the headers you want the client to have access to in the Access-Control-Expose-Headers header. For example, if your server sets a Foo response header, and you want the client to be able to read it, your server should also send the following header:

Access-Control-Expose-Headers: Foo

On the client side, you can read all the response headers by calling xhr.getAllResponseHeaders(). This returns the response headers as a string, which you can then parse into an object using the following code: https://gist.github.com/706839

That is an explanation of how things should work. However, note that there is a bug in older browsers where the response headers can't be read on the client. See here for more details: CORS xmlhttprequest HEAD method

阳光下的泡沫是彩色的 2024-11-16 02:58:10

我遇到了同样的问题,并在 Chromium 邮件列表上找到了答案,该问题已在 webkit 中修复,并将在 crhomium ~19 中实现。

我会尝试找到主题并更新我的答案。

I had same problem, and found answer on Chromium mailing list that this is fixed in webkit, and it will be implemented in crhomium ~19.

I will try to find topic and update my answer.

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