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/http/methods/delete/index.html | 102 ++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 files/ja/web/http/methods/delete/index.html (limited to 'files/ja/web/http/methods/delete') diff --git a/files/ja/web/http/methods/delete/index.html b/files/ja/web/http/methods/delete/index.html new file mode 100644 index 0000000000..a5bf20d4dc --- /dev/null +++ b/files/ja/web/http/methods/delete/index.html @@ -0,0 +1,102 @@ +--- +title: DELETE +slug: Web/HTTP/Methods/DELETE +tags: + - HTTP + - HTTP リクエストメソッド + - HTTPメソッド + - Reference + - リクエストメソッド +translation_of: Web/HTTP/Methods/DELETE +--- +
{{HTTPSidebar}}
+ +

HTTP の DELETE リクエストメソッド は特定のリソースを削除します。

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
リクエストの本文
成功時のレスポンスの本文
{{Glossary("Safe","安全性")}}なし
{{Glossary("Idempotent","べき等性")}}あり
{{Glossary("Cacheable","キャッシュ")}}不可
HTML フォームでの使用不可
+ +

構文

+ +
DELETE /file.html HTTP/1.1
+
+ +

+ +

リクエスト

+ +
DELETE /file.html HTTP/1.1
+ +

レスポンス

+ +

DELETE メソッドが正常に受け付けられた場合、可能性があるレスポンスステータスコードがいくつかあります。

+ + + +
HTTP/1.1 200 OK
+Date: Wed, 21 Oct 2015 07:28:00 GMT
+
+<html>
+  <body>
+    <h1>File deleted.</h1>
+  </body>
+</html>
+ +

仕様書

+ + + + + + + + + + + + + + +
仕様書題名
{{RFC("7231", "DELETE", "4.3.5")}}Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content
+ +

ブラウザーの互換性

+ + + +

{{Compat("http.methods.DELETE")}}

+ +

関連情報

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