The XMLHttpRequest
method getResponseHeader()
returns the string containing the text of of a particular header's value. If there are multiple response headers with the same name, then their values are returned as a single concatenated string, where each value is separated from the previous one by a pair of comma and space. The getResponseHeader()
method returns the value as a UTF byte sequence.
Note: The search for the header name is case-insensitive.
If you need to get the raw string of all of the headers, use the getAllResponseHeaders()
method, which returns the entire raw header string.
var myHeader = XMLHttpRequest.getResponseHeader(headerName);
name
ByteString
indicating the name of the header you want to return the text value of.A ByteString
representing the header's text value, or null
if either the response has not yet been received or the header doesn't exist in the response.
In this example, a request is created and sent, and a readystatechange
handler is established to look for the readyState
to indicate that the headers have been received; when that is the case, the value of the Content-Type
header is fetched. If the Content-Type
isn't the desired value, the XMLHttpRequest
is canceled by calling abort()
.
var client = new XMLHttpRequest(); client.open("GET", "unicorns-are-teh-awesome.txt", true); client.send(); client.onreadystatechange = function() { if(this.readyState == this.HEADERS_RECEIVED) { var contentType = client.getResponseHeader("Content-Type"); if (contentType != my_expected_type) { client.abort(); } } }
Specification | Status | Comment |
---|---|---|
XMLHttpRequest The definition of 'getResponseHeader()' in that specification. | Living Standard | WHATWG living standard |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 1 | 12 | Yes
|
7
|
Yes | 1.2 |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | Yes | 18 | Yes | Yes
|
Yes | ? | Yes |
getAllResponseHeaders()
response
setRequestHeader()
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/getResponseHeader