aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/glossary/entity_header/index.html
blob: 7efb1f05d1ff4a07582cfe901592ffe7d2d025ff (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
---
title: 实体报头
slug: Glossary/Entity_header
tags:
  - 实体报头
translation_of: Glossary/Entity_header
---
<div class="notecard note">
<p>当前的 HTTP/1.1 规范中不再提及实体、实体报头和实体的体。这中的有些字段现在被称为表示头字段(<a href="https://datatracker.ietf.org/doc/html/rfc7231#section-3" rel="noopener">RFC 7231, section 3: Representations</a>)。</p>
</div>

<p>实体报头是描述了一个 HTTP 消息有效载荷(即关于消息主体的元数据)的 HTTP 报头,见 {{glossary("header", "HTTP header")}}。实体报头包括 {{HTTPHeader("Content-Length")}}{{HTTPHeader("Content-Language")}}{{HTTPHeader("Content-Encoding")}}{{HTTPHeader("Content-Type")}}{{HTTPHeader("Expires")}} 等。实体报头可能同时存在于 HTTP 请求和响应信息中。</p>

<p>尽管实体报头既非请求或响应报头,(由于它经常出现在请求头或响应头中)它们通常包含于此类概念中。</p>

<p>在下面的例子中,{{HTTPHeader("Content-Length")}} 是实体报头,而 {{HTTPHeader("Host")}}{{HTTPHeader("User-Agent")}} 是请求报头。</p>

<pre class="brush: plain">POST /myform.html HTTP/1.1
Host: developer.mozilla.org
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:50.0) Gecko/20100101 Firefox/50.0
Content-Length: 128</pre>

<h2 id="更多信息">更多信息</h2>

<h3 id="技术知识">技术知识</h3>

<ul>
 <li><a href="/en-US/docs/Web/HTTP/Headers">所有 HTTP 报头列表</a></li>
</ul>