aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/http/headers/if-match/index.html
blob: 9443a30e14939f8c3219c0e0d2382a51e3d6688b (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: If-Match
slug: Web/HTTP/Headers/If-Match
tags:
  - 条件请求
  - 首部
translation_of: Web/HTTP/Headers/If-Match
---
<div>{{HTTPSidebar}}</div>

<p>请求首部 <strong><code>If-Match</code></strong> 的使用表示这是一个条件请求。在请求方法为 {{HTTPMethod("GET")}}{{HTTPMethod("HEAD")}} 的情况下,服务器仅在请求的资源满足此首部列出的 <code>ETag</code>值时才会返回资源。而对于 {{HTTPMethod("PUT")}} 或其他非安全方法来说,只有在满足条件的情况下才可以将资源上传。</p>

<p>{{HTTPHeader("ETag")}} 之间的比较使用的是<strong>强比较算法</strong>,即只有在每一个字节都相同的情况下,才可以认为两个文件是相同的。在 ETag 前面添加    <code>W/</code> 前缀表示可以采用相对宽松的算法。</p>

<p>以下是两个常见的应用场景:</p>

<ul>
 <li>对于 {{HTTPMethod("GET")}}  和 {{HTTPMethod("HEAD")}} 方法,搭配  {{HTTPHeader("Range")}}首部使用,可以用来保证新请求的范围与之前请求的范围是对同一份资源的请求。如果  ETag 无法匹配,那么需要返回 {{HTTPStatus("416")}}<code> </code>(Range Not Satisfiable,范围请求无法满足) 响应。</li>
 <li>对于其他方法来说,尤其是 {{HTTPMethod("PUT")}}, <code>If-Match</code> 首部可以用来避免<a href="https://www.w3.org/1999/04/Editing/#3.1">更新丢失问题</a>。它可以用来检测用户想要上传的不会覆盖获取原始资源之后做出的更新。如果请求的条件不满足,那么需要返回  {{HTTPStatus("412")}} (Precondition Failed,先决条件失败) 响应。</li>
</ul>

<table class="properties">
 <tbody>
  <tr>
   <th scope="row">Header type</th>
   <td>{{Glossary("Request header")}}</td>
  </tr>
  <tr>
   <th scope="row">{{Glossary("Forbidden header name")}}</th>
   <td>no</td>
  </tr>
 </tbody>
</table>

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

<pre class="syntaxbox">If-Match: &lt;etag_value&gt;
If-Match: &lt;etag_value&gt;, &lt;etag_value&gt;, …
</pre>

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

<dl>
 <dt>&lt;etag_value&gt;</dt>
 <dd>唯一地表示一份资源的实体标签。标签是由 ASCII 字符组成的字符串,用双引号括起来(如 "675af34563dc-tr34")。前面可以加上 W/ 前缀表示应该采用弱比较算法。</dd>
 <dt><code>*</code></dt>
 <dd>星号是一个特殊值,可以指代任意资源。</dd>
</dl>

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

<pre>If-Match: "bfc13a64729c4290ef5b2c2730249c88ca92d82d"

If-Match: W/"67ab43", "54ed21", "7892dd"

If-Match: *
</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", "If-Match", "3.1")}}</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.If-Match")}}</p>

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

<ul>
 <li>{{HTTPHeader("ETag")}}</li>
 <li>{{HTTPHeader("If-Unmodified-Since")}}</li>
 <li>{{HTTPHeader("If-Modified-Since")}}</li>
 <li>{{HTTPHeader("If-None-Match")}}</li>
 <li>{{HTTPStatus("416")}}<code> Range Not Satisfiable</code></li>
 <li>{{HTTPStatus("412")}}<code> Precondition Failed</code></li>
</ul>