aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/http/status/202/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/http/status/202/index.html')
-rw-r--r--files/zh-cn/web/http/status/202/index.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/files/zh-cn/web/http/status/202/index.html b/files/zh-cn/web/http/status/202/index.html
new file mode 100644
index 0000000000..127886eeb5
--- /dev/null
+++ b/files/zh-cn/web/http/status/202/index.html
@@ -0,0 +1,36 @@
+---
+title: 202 Accepted
+slug: Web/HTTP/Status/202
+tags:
+ - 响应成功
+ - 状态码
+translation_of: Web/HTTP/Status/202
+---
+<div>{{HTTPSidebar}}</div>
+
+<p>响应状态码<strong> 202 Accepted</strong> 表示服务器端已经收到请求消息,但是尚未进行处理。但是对于请求的处理确实无保证的,即稍后无法通过 HTTP 协议给客户端发送一个异步请求来告知其请求的处理结果。这个状态码被设计用来将请求交由另外一个进程或者服务器来进行处理,或者是对请求进行批处理的情形。</p>
+
+<h2 id="状态">状态</h2>
+
+<pre class="syntaxbox">202 Accepted</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", "202 Accepted" , "6.3.3")}}</td>
+ <td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="相关内容">相关内容</h2>
+
+<ul>
+ <li>{{HTTPHeader("Accept")}}</li>
+</ul>