blob: c5a81d04ce1f4647b12df52f58cafefe3e6e0c22 (
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: Sec-Fetch-User
slug: Web/HTTP/Headers/Sec-Fetch-User
translation_of: Web/HTTP/Headers/Sec-Fetch-User
---
<p>{{HTTPSidebar}}{{Draft}}</p>
<p><strong><code>Sec-Fetch-User</code></strong> 获取元数据标头表明了一个导航请求是否由用户激活触发。</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">Header type</th>
<td>{{Glossary("Fetch Metadata Request Header")}}</td>
</tr>
<tr>
<th scope="row">{{Glossary("Forbidden header name")}}</th>
<td>只要包含前缀 <code>Sec-</code> 都属于应用程序禁止修改的HTTP消息头,用户代理保留全部对它们的控制权</td>
</tr>
<tr>
<th scope="row">{{Glossary("CORS-safelisted request header")}}</th>
<td></td>
</tr>
</tbody>
</table>
<h2 id="语法">语法</h2>
<pre class="syntaxbox notranslate">Sec-Fetch-User: ?0
Sec-Fetch-User: ?1
</pre>
<h2 id="值">值</h2>
<p>该值是一个布尔结构化的标头。</p>
<dl>
<dt><code>?0</code></dt>
<dd>导航请求由用户激活触发。</dd>
<dt><code>?1</code></dt>
<dd>导航请求由用户激活以外的原因触发。</dd>
</dl>
<h2 id="示例">示例</h2>
<p>暂时没有内容</p>
<h2 id="规范">规范</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Title</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://w3c.github.io/webappsec-fetch-metadata/#sec-fetch-user-header">Fetch Metadata Request Headers</a></td>
<td>The Sec-Fetch-User HTTP Request Header</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("http.headers.Sec-Fetch-User")}}</p>
<h2 id="另请参阅">另请参阅</h2>
<ul>
<li>{{HTTPHeader("Sec-Fetch-Dest")}}</li>
<li>{{HTTPHeader("Sec-Fetch-Mode")}}</li>
<li>{{HTTPHeader("Sec-Fetch-Site")}}</li>
</ul>
|