aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/blob/stream/index.html
blob: c14f5faa1c442eb35c49c0854951085b8c53afee (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
---
title: Blob.stream()
slug: Web/API/Blob/stream
tags:
  - API
  - Blob
  - stream
  - 文件读写
translation_of: Web/API/Blob/stream
---
<p>{{APIRef("File API")}}</p>

<p><span class="seoSummary">{{domxref("Blob")}}接口的<code><strong>stream()</strong></code> 方法返回一个{{domxref("ReadableStream")}}对象,读取它将返回包含在<code>Blob</code>中的数据。</span></p>

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

<pre class="syntaxbox">var <em>stream</em> = <em>blob</em>.stream();</pre>

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

<p>无。</p>

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

<p>一个{{domxref("ReadableStream")}}对象,读取后返回 <code>Blob</code>的内容。</p>

<h2 id="使用说明">使用说明</h2>

<p>使用 <code>stream()</code> 函数与其返回的{{domxref("ReadableStream")}}对象,你将得到一些有趣的能力:</p>

<ul>
 <li>调用方法{{domxref("ReadableStream.getReader", "getReader()")}},在返回的stream上获取一个对象,通过{{domxref("ReadableStreamDefaultReader")}}接口提供的{{domxref("ReadableStreamDefaultReader.read", "read()")}}方法读取blob对象的方法。</li>
 <li>调用返回stream对象的{{domxref("ReadableStream.pipeTo", "pipeTo()")}}方法将blob对象的数据传输到可写流。</li>
 <li>调用返回stream对象的{{domxref("ReadableStream.tee", "tee()")}}方法以准备可读流。该方法会返回一个数组,该数组包含两个新的 <code>ReadableStream</code> 对象,每个对象都会返回 <code>Blob</code>的内容。</li>
 <li>调用返回stream对象的{{domxref("ReadableStream.pipeThrough", "pipeThrough()")}}方法,通过一个{{domxref("TransformStream")}}对象或其它任意可读可写对传输流对象。</li>
</ul>

<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("File API", "#dom-blob-stream", "Blob.stream()")}}</td>
   <td>{{Spec2("File API")}}</td>
   <td></td>
  </tr>
 </tbody>
</table>

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



<p>{{Compat("api.Blob.stream")}}</p>

<h2 id="另请参阅">另请参阅</h2>

<ul>
 <li>{{domxref("Body.body")}}</li>
 <li><a href="/en-US/docs/Web/API/Streams_API">Streams API</a></li>
</ul>