Request.method

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since March 2017.

methodRequest インターフェイスの読み取り専用プロパティで、このリクエストのメソッド(GETPOST など)を保持します。

リクエストメソッドを示す文字列です。

次のスニペットは、Request.Request() コンストラクターを使って(スクリプトと同じディレクトリーにある画像ファイルのために)新しいリクエストを生成してから、リクエストメソッドを変数に保存しています。

js
const myRequest = new Request("flowers.jpg");
const myMethod = myRequest.method; // GET

仕様書

Specification
Fetch Standard
# ref-for-dom-request-method②

ブラウザーの互換性

BCD tables only load in the browser

関連項目