blob: aad8e48fc2cdba3b1c84387f83a6356b196373cf (
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
|
---
title: WebSocket.binaryType
slug: Web/API/WebSocket/二进制类型
tags:
- 参考
- 属性
- 应用编程接口
- 网页套接字
- 网页接口
translation_of: Web/API/WebSocket/binaryType
---
<p>{{APIRef("Web Sockets API")}}</p>
<p><strong><code>WebSocket.binaryType</code></strong> 返回websocket连接所传输二进制数据的类型。</p>
<h2 id="语法">语法</h2>
<pre class="syntaxbox"><em>var binaryType</em> = aWebSocket.binaryType;</pre>
<h2 id="返回值">返回值</h2>
<p> 一条{{DOMXref("DOMString")}}:</p>
<dl>
<dt><code>"blob"</code></dt>
<dd>如果传输的是 {{domxref("Blob")}} 类型的数据。</dd>
<dt><code>"arraybuffer"</code></dt>
<dd>如果传输的是 {{jsxref("ArrayBuffer")}} 类型的数据。
<p> </p>
</dd>
</dl>
<h2 id="规范">规范</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', '#dom-websocket-binarytype', 'WebSocket: binaryType')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("api.WebSocket.binaryType")}}</p>
|