aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/http/methods/trace/index.html
blob: 47f22c8da2f27f4625bf98d540562e56ed81c048 (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
---
title: TRACE
slug: Web/HTTP/Methods/TRACE
translation_of: Web/HTTP/Methods/TRACE
---
<div>{{HTTPSidebar}}</div>

<p><strong>HTTP <code>TRACE</code> 方法</strong> 实现沿通向目标资源的路径的消息环回(loop-back)测试 ,提供了一种实用的 debug 机制。</p>

<p>请求的最终接收者应当原样反射(reflect)它接收到的消息,除了以下字段部分,作为一个{{httpheader("Content-Type")}} 为 <code>message/http</code>  的200(OK)响应的消息的主体(body)返回给客户端 。</p>

<p>最终接收者是指初始(origin)服务器,或者第一个接收到 {{httpheader("Max-Forwards")}} 值为 0的请求的服务器。</p>

<table class="properties">
 <tbody>
  <tr>
   <th scope="row">有主体(body)的请求(request)</th>
   <td></td>
  </tr>
  <tr>
   <th scope="row">包含主体(body)的成功的响应(response)</th>
   <td></td>
  </tr>
  <tr>
   <th scope="row">{{Glossary("Safe")}}</th>
   <td></td>
  </tr>
  <tr>
   <th scope="row">{{Glossary("Idempotent")}}</th>
   <td></td>
  </tr>
  <tr>
   <th scope="row">{{Glossary("Cacheable")}}</th>
   <td></td>
  </tr>
  <tr>
   <th scope="row">允许用于 HTML 表单(form)</th>
   <td></td>
  </tr>
 </tbody>
</table>

<h2 id="语法">语法</h2>

<pre class="syntaxbox">TRACE /index.html
</pre>

<h2 id="规范">规范</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">规范</th>
   <th scope="col">标题</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{RFC("7231", "TRACE", "4.3.8")}}</td>
   <td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>

<p class="hidden">本页内的兼容性表格是从结构化的数据中生成的。如果您想要贡献兼容性数据,请浏览 <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> 并给我们提 pull request 。</p>

<p>{{Compat("http.methods.TRACE")}}</p>

<h2 id="参考">参考</h2>

<ul>
 <li><a href="/en-US/docs/Web/HTTP/Methods">HTTP methods</a></li>
</ul>

<p> </p>