最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Http headers in Javascript? - Stack Overflow

programmeradmin2浏览0评论

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)

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

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)

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

Share Improve this question edited Apr 7, 2015 at 10:02 asked Jul 9, 2010 at 18:47 user372551user372551 1
  • Related question: stackoverflow./questions/220231/… – Brock Adams Commented Jun 22, 2011 at 19:00
Add a ment  | 

2 Answers 2

Reset to default 5

The HTTP headers aren't available in JavaScript.

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);

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');

Firebug is not a web application - it is a XUL application (that is, a Mozilla application, written with XUL and javascript) and as such has access to http headers that browser side javascript cannot access.

You cannot access http header via javascript in the browser.

发布评论

评论列表(0)

  1. 暂无评论