From da78a9e329e272dedb2400b79a3bdeebff387d47 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:17 -0500 Subject: initial commit --- files/ko/web/http/methods/delete/index.html | 98 +++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 files/ko/web/http/methods/delete/index.html (limited to 'files/ko/web/http/methods/delete') diff --git a/files/ko/web/http/methods/delete/index.html b/files/ko/web/http/methods/delete/index.html new file mode 100644 index 0000000000..7d27889eb9 --- /dev/null +++ b/files/ko/web/http/methods/delete/index.html @@ -0,0 +1,98 @@ +--- +title: DELETE +slug: Web/HTTP/Methods/DELETE +tags: + - HTTP + - Reference + - Request method +translation_of: Web/HTTP/Methods/DELETE +--- +
{{HTTPSidebar}}
+ +

HTTP DELETE 메서드는 지정한 리소스를 삭제합니다.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
요청에 본문 존재May
성공 응답에 본문 존재May
{{Glossary("Safe", "안전함")}}No
{{Glossary("Idempotent", "멱등성")}}Yes
{{Glossary("Cacheable", "캐시 가능")}}No
HTML 양식에서 사용 가능No
+ +

구문

+ +
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