TextEncoderStream: TextEncoderStream() Konstruktor

Hinweis: Dieses Feature ist verfügbar in Web Workers.

Der TextEncoderStream() Konstruktor erstellt ein neues TextEncoderStream Objekt, das verwendet wird, um einen Strom von Zeichenketten in Bytes umzuwandeln, wobei die UTF-8-Kodierung verwendet wird.

Syntax

js
new TextEncoderStream()

Parameter

Keine.

Beispiele

In diesem Beispiel wird ein TextEncoderStream erstellt und verwendet, um einen Textstrom hochzuladen.

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

Spezifikationen

Specification
Encoding Standard
# ref-for-dom-textencoderstream①

Browser-Kompatibilität

BCD tables only load in the browser