TextEncoderStream: TextEncoderStream() コンストラクター
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 Standard # ref-for-dom-textencoderstream① |
ブラウザーの互換性
BCD tables only load in the browser