aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/http/headers/last-modified/index.html
blob: e72ef0c34ca585e9b5a0bc6dc53a23e5f77e84c7 (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
---
title: Last-Modified
slug: Web/HTTP/Headers/Last-Modified
tags:
  - 请求首部
translation_of: Web/HTTP/Headers/Last-Modified
---
<div>{{HTTPSidebar}}</div>

<p>The <strong><code>Last-Modified</code></strong>  是一个响应首部,其中包含源头服务器认定的资源做出修改的日期及时间。 它通常被用作一个验证器来判断接收到的或者存储的资源是否彼此一致。由于精确度比  {{HTTPHeader("ETag")}} 要低,所以这是一个备用机制。包含有  {{HTTPHeader("If-Modified-Since")}}{{HTTPHeader("If-Unmodified-Since")}} 首部的条件请求会使用这个字段。</p>

<table class="properties">
 <tbody>
  <tr>
   <th scope="row">Header type</th>
   <td>{{Glossary("Response header")}}</td>
  </tr>
  <tr>
   <th scope="row">{{Glossary("Forbidden header name")}}</th>
   <td>no</td>
  </tr>
  <tr>
   <th scope="row">{{Glossary("Simple response header", "CORS-safelisted response-header")}}</th>
   <td>yes</td>
  </tr>
 </tbody>
</table>

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

<pre class="syntaxbox">Last-Modified: &lt;day-name&gt;, &lt;day&gt; &lt;month&gt; &lt;year&gt; &lt;hour&gt;:&lt;minute&gt;:&lt;second&gt; GMT
</pre>

<h2 id="指令">指令</h2>

<dl>
 <dt>&lt;day-name&gt;</dt>
 <dd> "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" 或 "Sun" 之一 (区分大小写)。</dd>
 <dt>&lt;day&gt;</dt>
 <dd>两位数字表示的天数, 例如"04" or "23"。</dd>
 <dt>&lt;month&gt;</dt>
 <dd>"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" 之一(区分大小写)。</dd>
 <dt>&lt;year&gt;</dt>
 <dd>4位数字表示的年份, 例如 "1990" 或者"2016"。</dd>
 <dt>&lt;hour&gt;</dt>
 <dd>两位数字表示的小时数, 例如 "09" 或者 "23"。</dd>
 <dt>&lt;minute&gt;</dt>
 <dd>两位数字表示的分钟数,例如"04" 或者 "59"。</dd>
 <dt>&lt;second&gt;</dt>
 <dd>两位数字表示的秒数,例如 "04" 或者 "59"。</dd>
 <dt><code>GMT</code></dt>
 <dd>
 <p>国际标准时间。HTTP中的时间均用国际标准时间表示,从来不使用当地时间。</p>
 </dd>
</dl>

<h2 id="示例">示例</h2>

<pre>Last-Modified: Wed, 21 Oct 2015 07:28:00 GMT
</pre>

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

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Title</th>
  </tr>
  <tr>
   <td>{{RFC("7232", "Last-Modified", "2.2")}}</td>
   <td>Hypertext Transfer Protocol (HTTP/1.1): Conditional Requests</td>
  </tr>
 </tbody>
</table>

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

<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>

<p>{{Compat("http.headers.Last-Modified")}}</p>

<h2 id="相关内容">相关内容</h2>

<ul>
 <li>{{HTTPHeader("If-Modified-Since")}}</li>
 <li>{{HTTPHeader("If-Unmodified-Since")}}</li>
 <li>{{HTTPHeader("Etag")}}</li>
</ul>