getReader()
方法在
ReadableStream
interface creates a reader and locks the stream to it. While the stream is locked, no other reader can be acquired until this one is released.
var reader = readableStream.getReader({mode});
mode
, which takes as its value a
DOMString
specifying the type of reader to create. Values can be:
"byob"
, which results in a
ReadableStreamBYOBReader
being created that can read readable byte streams (i.e. can handle "bring your own buffer" reading).
undefined
(or not specified at all — this is the default), which results in a
ReadableStreamDefaultReader
being created that can read individual chunks from a stream.
A
ReadableStreamDefaultReader
or
ReadableStreamBYOBReader
object instance, depending on the
mode
值。
"byob"
or
undefined
.
ReadableStream
.
In the following simple example, a previously-created custom
ReadableStream
is read using a
ReadableStreamDefaultReader
created using
getReader()
. (see our
Simple random stream example
for the full code). Each chunk is read sequentially and output to the UI, until the stream has finished being read, at which point we return out of the recursive function and print the entire stream to another part of the UI.
function fetchStream() {
const reader = stream.getReader();
let charsReceived = 0;
// read() returns a promise that resolves
// when a value has been received
reader.read().then(function processText({ done, value }) {
// Result objects contain two properties:
// done - true if the stream has already given you all its data.
// value - some data. Always undefined when done is true.
if (done) {
console.log("Stream complete");
para.textContent = value;
return;
}
// value for fetch streams is a Uint8Array
charsReceived += value.length;
const chunk = value;
let listItem = document.createElement('li');
listItem.textContent = 'Received ' + charsReceived + ' characters so far. Current chunk = ' + chunk;
list2.appendChild(listItem);
result += chunk;
// Read some more, and call this function again
return reader.read().then(processText);
});
}
| 规范 | 状态 | 注释 |
|---|---|---|
|
流
The definition of 'getReader()' in that specification. |
实时标准 | 初始定义。 |
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
更新 GitHub 上的兼容性数据| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
getReader
|
Chrome 43 | Edge 14 |
Firefox
65
|
IE No | Opera 30 | Safari 10.1 | WebView Android 43 | Chrome Android 43 |
Firefox Android
65
|
Opera Android 30 | Safari iOS 10.3 | Samsung Internet Android 4.0 |
完整支持
不支持
实验。期望将来行为有所改变。
用户必须明确启用此特征。
ReadableStream
cancel()
getReader()
pipeThrough()
pipeTo()
tee()
Body.body
ByteLengthQueuingStrategy
CountQueuingStrategy
ReadableByteStreamController
ReadableStreamBYOBReader
ReadableStreamBYOBRequest
ReadableStreamDefaultController
ReadableStreamDefaultReader
WindowOrWorkerGlobalScope.fetch()
WritableStream
WritableStreamDefaultController
WritableStreamDefaultWriter