From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/ja/web/api/request/method/index.html | 116 +++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 files/ja/web/api/request/method/index.html (limited to 'files/ja/web/api/request/method') diff --git a/files/ja/web/api/request/method/index.html b/files/ja/web/api/request/method/index.html new file mode 100644 index 0000000000..45f4b65ba4 --- /dev/null +++ b/files/ja/web/api/request/method/index.html @@ -0,0 +1,116 @@ +--- +title: Request.method +slug: Web/API/Request/method +tags: + - API + - Experimental + - Fetch + - Property + - Reference + - request +translation_of: Web/API/Request/method +--- +
{{APIRef("Fetch")}}{{SeeCompatTable}}
+ +

{{domxref("Request")}} インターフェースの method 読み取り専用プロパティには、リクエストメソッド(GET、POST など)を含みます。

+ +

構文

+ +
var myMode = request.mode;
+ +

+ +

リクエストメソッドを示す {{domxref("ByteString")}}。

+ +

+ +

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

+ +
var myRequest = new Request('flowers.jpg');
+var myMethod = myRequest.method; // GET
+ +

仕様

+ + + + + + + + + + + + + + +
仕様状態コメント
{{SpecName('Fetch','#dom-request-method','method')}}{{Spec2('Fetch')}}Initial definition
+ +

ブラウザ実装状況

+ +

{{CompatibilityTable}}

+ +
+ + + + + + + + + + + + + + + + + + + +
機能ChromeFirefox (Gecko)Internet ExplorerOperaSafari (WebKit)
基本サポート{{CompatChrome(42)}}
+ {{CompatChrome(41)}}[1]
{{CompatGeckoDesktop(39)}}
+ 34[1]
{{CompatNo}} +

29
+ 28[1]

+
{{CompatNo}}
+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + +
機能AndroidFirefox Mobile (Gecko)Firefox OS (Gecko)IE PhoneOpera MobileSafari MobileChrome for Android
基本サポート{{CompatNo}}{{CompatNo}}{{CompatNo}}{{CompatNo}}{{CompatNo}}{{CompatNo}}{{CompatNo}}
+
+ +

[1] この機能は設定によって使えるようになります。

+ +

関連項目

+ + -- cgit v1.2.3-54-g00ecf