aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/http/methods/delete/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/de/web/http/methods/delete/index.html')
-rw-r--r--files/de/web/http/methods/delete/index.html98
1 files changed, 98 insertions, 0 deletions
diff --git a/files/de/web/http/methods/delete/index.html b/files/de/web/http/methods/delete/index.html
new file mode 100644
index 0000000000..c054a834f9
--- /dev/null
+++ b/files/de/web/http/methods/delete/index.html
@@ -0,0 +1,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
+
+&lt;html&gt;
+ &lt;body&gt;
+ &lt;h1&gt;File deleted.&lt;/h1&gt;
+ &lt;/body&gt;
+&lt;/html&gt;</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>