现在,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;
}
});