Javascript中的Http标头? [英] Http headers in Javascript?

查看:118
本文介绍了Javascript中的Http标头?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以在JavaScript中收集HTTP标头?
在使用Firebug几天后,这只是我的想法。
在我发现的其中一篇文章中,无法在JavaScript中找到HTTP标头,而在firebug中,我们可以看到响应标头(客户端)

Is it possible to gather the HTTP headers in JavaScript ? This is just a thought of mine after using Firebug for days. In one of the posts I came to know that, it is impossible to find the HTTP headers in JavaScript, whereas in firebug, we can see the response headers (client side)

所以我的问题是我们可以在JavaScript中缓存HTTP标头吗?

so my question is can we cache the HTTP headers in JavaScript ?

推荐答案

HTTP标头不可用在JavaScript中。

The HTTP headers aren't available in JavaScript.

但是你可以用 XMLHttpRequest 来做一个 HEAD 请求 同一个域

However you could use XMLHttpRequest to do a HEAD request to any resource within the same domain:

var xhr = new XMLHttpRequest();

xhr.open('HEAD', '/', true);            // Relative path of resource

xhr.onreadystatechange = function() {
  if (xhr.readyState === 4) {
    console.log(xhr.getAllResponseHeaders());
  }
}

xhr.send(null);

以上内容将返回此类内容(在本页的Firebug中运行):

The above will return something like this (running it in Firebug on this page):

Server: nginx 
Date: Fri, 09 Jul 2010 18:58:30 GMT 
Content-Type: text/html; charset=utf-8 
Connection: keep-alive 
Cache-Control: public, max-age=60 
Content-Length: 33273 
Content-Encoding: gzip 
Expires: Fri, 09 Jul 2010 18:59:31 GMT 
Last-Modified: Fri, 09 Jul 2010 18:58:31 GMT 
Vary: * 

您可以轻松获得单个标题的值,如下所示:

You can easily get the value of single headers like this:

xhr.getResponseHeader('Last-Modified');

这篇关于Javascript中的Http标头?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆