blob: 9816c0c889165900094a537833a0a411946658e7 (
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
|
---
title: XMLHttpRequest.open()
slug: Web/API/XMLHttpRequest/open
tags:
- Reference
- XMLHttpRequest
translation_of: Web/API/XMLHttpRequest/open
---
<p>{{APIRef('XMLHttpRequest')}}</p>
<p><strong>XMLHttpRequest.open()</strong> 方法初始化一个请求。该方法要从JavaScript代码使用;从原生代码初始化一个请求,使用<code><a class="internal" href="/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIXMLHttpRequest#openRequest()">openRequest()</a></code>替代。</p>
<div class="note"><strong>注意:</strong>为已激活的请求调用此方法(<code>open()</code>或<code>openRequest()</code>已被调用)相当于调用<code>abort()</code>。</div>
<h2 id="语法">语法</h2>
<pre class="syntaxbox notranslate">xhrReq.open(<var>method</var>,<var> url</var>);
xhrReq.open(<var>method</var>,<var> url</var>,<var> async)</var>;
xhrReq.open(<var>method</var>,<var> url</var>,<var> async</var>,<var> user</var>);
xhrReq.open(<var>method</var>,<var> url</var>,<var> async</var>,<var> user</var>,<var> password</var>);
</pre>
<h3 id="参数">参数</h3>
<dl>
<dt><code>method</code></dt>
<dd>要使用的HTTP方法,比如「GET」、「POST」、「PUT」、「DELETE」、等。对于非HTTP(S) URL被忽略。</dd>
<dt><code>url</code></dt>
<dd>一个{{domxref("DOMString")}}表示要向其发送请求的URL。</dd>
<dt><code>async</code> {{optional_inline}}</dt>
<dd>一个可选的布尔参数,表示是否异步执行操作,默认为<code>true</code>。如果值为<code>false</code>,<code>send()</code>方法直到收到答复前不会返回。如果<code>true</code>,已完成事务的通知可供事件监听器使用。如果<code>multipart</code>属性为<code>true</code>则这个必须为<code>true</code>,否则将引发异常。
<div class="note"><strong>注意:</strong>主线程上的同步请求很容易破坏用户体验,应该避免;实际上,许多浏览器已完全弃用主线程上的同步XHR支持。在 {{domxref("Worker")}}中允许同步请求</div>
</dd>
<dt><code>user</code> {{optional_inline}}</dt>
<dd>可选的用户名用于认证用途;默认为<code>null</code>。</dd>
<dt><code>password</code> {{optional_inline}}</dt>
<dd>可选的密码用于认证用途,默认为<code>null</code>。</dd>
</dl>
<h2 id="规格">规格</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName('XMLHttpRequest', '#the-open()-method', 'open()')}}</td>
<td>{{Spec2('XMLHttpRequest')}}</td>
<td>WHATWG living standard</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
{{Compat("api.XMLHttpRequest.open")}}
<h2 id="参见">参见</h2>
<p><a href="/zh-CN/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest">使用 XMLHttpRequest</a></p>
|