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

View in English Always switch to English

TextEncoderStream()

基线 广泛可用

自 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" },
});

规范

规范
Encoding
# ref-for-dom-textencoderstream①

浏览器兼容性