← 返回首页
TextEncoderStream: TextEncoderStream() コンストラクター - Web API | MDN

このページはコミュニティーの尽力で英語から翻訳されました。MDN Web Docs コミュニティーについてもっと知り、仲間になるにはこちらから。

View in English Always switch to English

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 2022年9月.

TextEncoderStream() コンストラクター、文字列のストリームを UTF-8 エンコーディングを使用してバイト列に変換するために使用する、新しい TextEncoderStream オブジェクトを作成します。

In this article

構文

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①

ブラウザーの互換性

Enable JavaScript to view this browser compatibility table.