blob: c054a834f9f50bc3f807d2c8c5f59b41cbd21375 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
---
title: DELETE
slug: Web/HTTP/Methods/DELETE
translation_of: Web/HTTP/Methods/DELETE
---
<div>{{HTTPSidebar}}</div>
<p>Die <strong>Request-Methode HTTP DELETE</strong> löscht die angegebene Ressource.</p>
<p> </p>
<table class="properties">
<tbody>
<tr>
<th scope="row">Request hat einen Körper</th>
<td>Kann</td>
</tr>
<tr>
<th scope="row">Erfolgreiche Response hat Körper</th>
<td>Kann</td>
</tr>
<tr>
<th scope="row">{{Glossary("Safe")}}</th>
<td>Nein</td>
</tr>
<tr>
<th scope="row">{{Glossary("Idempotent")}}</th>
<td>Ja</td>
</tr>
<tr>
<th scope="row">{{Glossary("Cacheable")}}</th>
<td>Nein</td>
</tr>
<tr>
<th scope="row">In <a href="https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Forms">HTML Formularen</a> erlaubt </th>
<td>Nein</td>
</tr>
</tbody>
</table>
<h2 id="Syntax">Syntax</h2>
<pre class="syntaxbox">DELETE /file.html HTTP/1.1
</pre>
<h2 id="Beispiel">Beispiel</h2>
<h3 id="Request">Request</h3>
<pre>DELETE /file.html HTTP/1.1</pre>
<h3 id="Responses">Responses</h3>
<p>Bei erfolgreicher Anwendung einer <code>DELETE</code>-Methode sind mehrere Antwortzustandscodes möglich:</p>
<ul>
<li>Einen {{HTTPStatus("202")}} (<code>Akzeptiert</code>) Statuscode, wenn die Aktion wahrscheinlich erfolgreich sein wird, aber noch nicht durchgeführt wurde.</li>
<li>Einen {{HTTPStatus("204")}} (<code>Kein Inhalt</code>) Statuscode, wenn die Aktion durchgeführt wurde und keine weiteren Informationen zu liefern sind.</li>
<li>Einen {{HTTPStatus("200")}} (<code>OK</code>) Statuscode, wenn die Aktion ausgeführt wurde und die Antwortnachricht eine Darstellung enthält, die den Status beschreibt.</li>
</ul>
<pre>HTTP/1.1 200 OK
Date: Wed, 21 Oct 2015 07:28:00 GMT
<html>
<body>
<h1>File deleted.</h1>
</body>
</html></pre>
<h2 id="Spezifikationen">Spezifikationen</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Title</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{RFC("7231", "DELETE", "4.3.5")}}</td>
<td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
</tr>
</tbody>
</table>
<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
<p>{{Compat("http.methods.DELETE")}}</p>
<h2 id="Siehe_auch">Siehe auch</h2>
<ul>
<li>HTTP status: {{HTTPStatus("200")}}, {{HTTPStatus("202")}}, {{HTTPStatus("204")}}</li>
</ul>
|