blob: 74cebd36b2477ca9691fb887ea7a28011758e954 (
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
104
105
|
---
title: Date
slug: Web/HTTP/Headers/Date
tags:
- General Header
- HTTP
- Reference
- header
---
<div>{{HTTPSidebar}}</div>
<p><strong><code>Date</code></strong> 標頭的值是傳送當下的日期與時間。</p>
<div class="notecard warning">
<p>注意 <code>Date</code> 被列在 fetch spec 的 <a
href="https://fetch.spec.whatwg.org/#forbidden-header-name"
rel="nofollow noreferrer">forbidden header names</a> 清單中──也就是說這段程式不會送出 <code>Date</code> 標頭:</p>
<pre class="brush: js">fetch('https://httpbin.org/get', {
'headers': {
'Date': (new Date()).toUTCString()
}
})</pre>
</div>
<table class="properties">
<tbody>
<tr>
<th scope="row">Header type</th>
<td>{{Glossary("General header")}}</td>
</tr>
<tr>
<th scope="row">{{Glossary("Forbidden header name")}}</th>
<td>yes</td>
</tr>
</tbody>
</table>
<h2 id="Syntax">語法</h2>
<pre class="brush: html">Date: <day-name>, <day> <month> <year> <hour>:<minute>:<second> GMT
</pre>
<h2 id="Directives">指令</h2>
<dl>
<dt><day-name></dt>
<dd>代表星期幾,為 Mon、Tue、Wed、Thu、Fri、Sat 或 Sun 之一(區分大小寫)。</dd>
<dt><day></dt>
<dd>二位數日期,比如「04」或「23」。</dd>
<dt><month></dt>
<dd>月份,為 Jan、Feb、Mar、Apr、May、Jun、Jul、Aug、Sep、Oct、Nov、Dec 之一(區分大小寫)。</dd>
<dt><year></dt>
<dd>四位數年份,比如「1990」或「2016」。</dd>
<dt><hour></dt>
<dd>二位數小時,比如「09」或「23」。</dd>
<dt><minute></dt>
<dd>二位數分鐘,比如「04」或「59」。</dd>
<dt><second></dt>
<dd>二位數秒,比如「04」或「59」。</dd>
<dt>GMT</dt>
<dd>
<p>格林威治標準時間的意思。在 HTTP 中日期都是採用 GMT,絕不會顯示當地時間。</p>
</dd>
</dl>
<h2 id="Examples">範例</h2>
<pre>Date: Wed, 21 Oct 2015 07:28:00 GMT
</pre>
<pre class="brush: js">new Date().toUTCString()
// "Mon, 09 Mar 2020 08:13:24 GMT"</pre>
<h2 id="Specifications">規格</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Title</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{RFC("7231、Date、7.1.1.2")}}</td>
<td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">瀏覽器相容性</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.Date")}}</p>
<h2 id="See_also">參閱</h2>
<ul>
<li>{{HTTPHeader("Age")}}</li>
</ul>
|