Request: bytes() メソッド
bytes()
は Request
インターフェイスのメソッドで、リクエスト本体を読み込み、Uint8Array
で解決するプロミスとしてそれを返します。
構文
js
bytes()
引数
なし。
返値
Uint8Array
で解決するプロミスです。
例
js
const myArray = new Uint8Array(10);
const request = new Request("/myEndpoint", {
method: "POST",
body: myArray,
});
request.bytes().then((buffer) => {
// リクエストで送信されたバッファーを処理する
});
仕様書
Specification |
---|
Fetch Standard # dom-body-bytes |
ブラウザーの互換性
BCD tables only load in the browser