aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/http/methods/delete/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/http/methods/delete/index.html')
-rw-r--r--files/zh-cn/web/http/methods/delete/index.html103
1 files changed, 103 insertions, 0 deletions
diff --git a/files/zh-cn/web/http/methods/delete/index.html b/files/zh-cn/web/http/methods/delete/index.html
new file mode 100644
index 0000000000..5da1185b7c
--- /dev/null
+++ b/files/zh-cn/web/http/methods/delete/index.html
@@ -0,0 +1,103 @@
+---
+title: DELETE
+slug: Web/HTTP/Methods/DELETE
+tags:
+ - HTTP
+ - HTTP方法
+ - 参考
+ - 请求方法
+translation_of: Web/HTTP/Methods/DELETE
+---
+<div>{{HTTPSidebar}}</div>
+
+<p><strong>HTTP DELETE </strong>请求方法用于删除指定的资源。</p>
+
+<table class="properties">
+ <tbody>
+ <tr>
+ <th scope="row">请求是否有主体</th>
+ <td>可以有</td>
+ </tr>
+ <tr>
+ <th scope="row">成功的返回是否有主体</th>
+ <td>可以有</td>
+ </tr>
+ <tr>
+ <th scope="row">{{Glossary("安全")}}</th>
+ <td>否</td>
+ </tr>
+ <tr>
+ <th scope="row">{{Glossary("幂等")}}</th>
+ <td>是</td>
+ </tr>
+ <tr>
+ <th scope="row">{{Glossary("可缓存")}}</th>
+ <td>否</td>
+ </tr>
+ <tr>
+ <th scope="row">可以在<a href="/en-US/docs/Web/Guide/HTML/Forms">HTML forms</a>中使用</th>
+ <td>否</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="语法">语法</h2>
+
+<pre class="syntaxbox">DELETE /file.html HTTP/1.1
+</pre>
+
+<h2 id="示例">示例</h2>
+
+<h3 id="请求">请求</h3>
+
+<pre>DELETE /file.html HTTP/1.1</pre>
+
+<h3 id="响应">响应</h3>
+
+<p>如果 <code>DELETE </code>方法成功执行,那么可能会有以下几种状态码:</p>
+
+<ul>
+ <li>状态码  {{HTTPStatus("202")}} (<code>Accepted</code>) 表示请求的操作可能会成功执行,但是尚未开始执行。</li>
+ <li>状态码 {{HTTPStatus("204")}} (<code>No Content</code>) 表示操作已执行,但是无进一步的相关信息。</li>
+ <li>状态码  {{HTTPStatus("200")}} (<code>OK</code>) 表示操作已执行,并且响应中提供了相关状态的描述信息。</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="规范">规范</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">Specification</th>
+ <th scope="col">Title</th>
+ </tr>
+ <tr>
+ <td>{{RFC("7231", "DELETE", "4.3.5")}}</td>
+ <td>
+ <p>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</p>
+ </td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility">Browser compatibility</h2>
+
+<p>{{Compat("http.methods.DELETE")}}</p>
+
+<h2 id="相关内容">相关内容</h2>
+
+<ul>
+ <li>HTTP status: {{HTTPStatus("200")}}, {{HTTPStatus("202")}}, {{HTTPStatus("204")}}</li>
+</ul>
+
+<p> </p>
+
+<p> </p>