现在,Chrome、Safari 和 Firefox 都支持转换流,因此它们终于可以大显身手了!
借助 Streams API,您可以将要接收、发送或转换的资源分解为小块,然后逐个处理这些块。最近,Firefox 102 开始支持 TransformStream
,这意味着 TransformStream
现在终于可以在所有浏览器中使用了。借助转换流,您可以将数据从 ReadableStream
管道传输到 WritableStream
,对数据块执行转换,或直接使用转换后的结果,如以下示例所示。
class UpperCaseTransformStream {
constructor() {
return new TransformStream({
transform(chunk, controller) {
controller.enqueue(chunk.toUpperCase());
},
});
}
}
button.addEventListener('click', async () => {
const response = await fetch('/script.js');
const readableStream = response.body
.pipeThrough(new TextDecoderStream())
.pipeThrough(new UpperCaseTransformStream());
const reader = readableStream.getReader();
pre.textContent = '';
while (true) {
const { done, value } = await reader.read();
if (done) {
break;
}
pre.textContent += value;
}
});