aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/xmlhttprequest/getresponseheader/index.html
blob: 050e7809f30d29040e0dd5a32f7df4cceb532606 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
title: XMLHttpRequest.getResponseHeader()
slug: Web/API/XMLHttpRequest/getResponseHeader
tags:
  - API
  - HTTP协议
  - XHR头
  - XHR请求
  - XMLHttpRequest
  - getResponseHeader
  - http头
  - 引用
  - 得到响应头
  - 报文
  - 方法
translation_of: Web/API/XMLHttpRequest/getResponseHeader
---
<p>{{draft}}{{APIRef('XMLHttpRequest')}}</p>

<p><strong>XMLHttpRequest.getResponseHeader()</strong>方法返回包含指定响应头文本的字符串。</p>

<p>如果在返回的响应头中有多个一样的名称,那么返回的值就会是用逗号和空格将值分隔的字符串。getResponseHeader()方法以UTF编码返回值。搜索的报文名是不区分大小写的。</p>

<h2 id="语法">语法</h2>

<pre class="notranslate">var myHeader = XMLHttpRequest.getResponseHeader(name);</pre>

<h3 id="参数">参数</h3>

<dl>
 <dt>name</dt>
 <dd>一个字符串,表示要返回的报文项名称。</dd>
</dl>

<h3 id="返回值">返回值</h3>

<p>报文项值,如果连接未完成,响应中不存在报文项,或者被W3C限制,则返回null。</p>

<h2 id="示例:">示例:</h2>

<pre class="brush: js notranslate">var client = new XMLHttpRequest();//新建XMLHttpRequest对象。
client.open("GET", "somefile.txt", true);//采用异步,GET方式获取somefile.txt。
client.send();//发送空的query string。
client.onreadystatechange = function() {//设定侦听器onreadystatechange。
  if(this.readyState == this.HEADERS_RECEIVED) {//如果readyState表示响应头已返回
    var contentType=client.getResponseHeader("Content-Type"));//将此连接的Content-Type响应头项赋值到contentType。
    if(contentType != my_expected_type) {//如果这不是你的预期值
      client.abort();//终止连接
    }
  }
}</pre>

<h2 id="规范">规范</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">规范</th>
   <th scope="col">状态</th>
   <th scope="col">注释</th>
  </tr>
  <tr>
   <td>{{SpecName('XMLHttpRequest', '#dom-xmlhttprequest-getresponseheader', 'getResponseHeader()')}}</td>
   <td>{{Spec2('XMLHttpRequest')}}</td>
   <td>WHATWG living standard</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>

{{Compat("api.XMLHttpRequest.getResponseHeader")}}

<h2 id="也请看看">也请看看:</h2>

<ul>
 <li>如何使用<a href="/en-US/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest">XMLHttpRequest</a></li>
 <li><a href="/zh-CN/docs/Web/HTTP/Headers">HTTP headers</a></li>
 <li>{{DOMxRef("XMLHttpRequest.getAllResponseHeaders", "getAllResponseHeaders()")}}</li>
 <li>{{DOMxRef("XMLHttpRequest.response", "response")}}</li>
 <li>设置请求头: {{DOMxRef("XMLHttpRequest.setRequestHeader", "setRequestHeader()")}}</li>
</ul>