TextEncoderStream: TextEncoderStream() コンストラクター
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
TextEncoderStream()
コンストラクター、文字列のストリームを UTF-8 エンコーディングを使用してバイト列に変換するために使用する、新しい TextEncoderStream
オブジェクトを作成します。
構文
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① |