语法
js
new TextEncoderStream()
参数
无。
示例
在此示例中,创建了一个 TextEncoderStream 并且使用它去上传一个文本流。
js
const body = textStream.pipeThrough(new TextEncoderStream());
fetch("/dest", {
method: "POST",
body,
headers: { "Content-Type": "text/plain; charset=UTF-8" },
});
规范
| 规范 |
|---|
| Encoding> # ref-for-dom-textencoderstream①> |