Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. TextEncoderStream
  4. TextEncoderStream()

TextEncoderStream: TextEncoderStream() constructor

Baseline Widely available

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

Note: This feature is available inWeb Workers.

TheTextEncoderStream() constructor creates a newTextEncoderStream object which is used to convert a stream of strings into bytes using UTF-8 encoding.

Syntax

js
new TextEncoderStream()

Parameters

None.

Examples

In this example aTextEncoderStream is created and used to upload a stream of text.

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

Specifications

Specification
Encoding
# ref-for-dom-textencoderstream①

Browser compatibility

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp