此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in English Always switch to English

TextEncoderStream()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2022年9月⁩.

TextEncoderStream() 构造函数创建一个新的 TextEncoderStream 对象,该对象使用 UTF-8 编码将字符串流转换为字节。

语法

js
new TextEncoderStream()

参数

无。

示例

在此示例中,创建了一个 TextEncoderStream 并且使用它去上传一个文本流。

js
const body = textStream.pipeThrough(new TextEncoderStream());
fetch("/dest", {
  method: "POST",
  body,
  headers: { "Content-Type": "text/plain; charset=UTF-8" },
});

规范

Specification
Encoding
# ref-for-dom-textencoderstream①

浏览器兼容性