blob: 5da1185b7c5f94fc323eb2f8a46b28c2055dc7ac (
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
99
100
101
102
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
<html>
<body>
<h1>File deleted.</h1>
</body>
</html></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>
|