aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/http
diff options
context:
space:
mode:
authorbtea <2356281422@qq.com>2021-10-31 02:51:16 -0500
committerGitHub <noreply@github.com>2021-10-31 15:51:16 +0800
commit097a68955ffa99cf09455235518d08a7674de068 (patch)
treec339f3edd2f9c83c58e6583fe7e2b470c2dc4b51 /files/zh-cn/web/http
parent97e29a6bacf7f2b0269d45b9d9fae37c245c250b (diff)
downloadtranslated-content-097a68955ffa99cf09455235518d08a7674de068.tar.gz
translated-content-097a68955ffa99cf09455235518d08a7674de068.tar.bz2
translated-content-097a68955ffa99cf09455235518d08a7674de068.zip
Fix mistranslation Web/HTTP/Headers/If-None-Match, zh-CN (#2922)
Diffstat (limited to 'files/zh-cn/web/http')
-rw-r--r--files/zh-cn/web/http/headers/if-none-match/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/http/headers/if-none-match/index.html b/files/zh-cn/web/http/headers/if-none-match/index.html
index 0e815e8a92..4821236f85 100644
--- a/files/zh-cn/web/http/headers/if-none-match/index.html
+++ b/files/zh-cn/web/http/headers/if-none-match/index.html
@@ -12,7 +12,7 @@ translation_of: Web/HTTP/Headers/If-None-Match
<p>对于  {{HTTPMethod("GET")}} 和 {{HTTPMethod("HEAD")}} 方法来说,当验证失败的时候,服务器端必须返回响应码 304 (Not Modified,未改变)。对于能够引发服务器状态改变的方法,则返回 412 (Precondition Failed,前置条件失败)。需要注意的是,服务器端在生成状态码为 304 的响应的时候,必须同时生成以下会存在于对应的 200 响应中的首部:Cache-Control、Content-Location、Date、ETag、Expires 和 Vary 。</p>
-<p>{{HTTPHeader("ETag")}} 属性之间的比较采用的是<strong>弱比较算法</strong>,即两个文件除了每个比特都相同外,内容一致也可以认为是相同的。例如,如果两个页面仅仅在页脚的生成时间有所不同,就可以认为二者是相同的。</p>
+<p>{{HTTPHeader("ETag")}} 属性之间的比较采用的是<strong>弱比较算法</strong>,即两个文件除了每个字节都相同外,内容一致也可以认为是相同的。例如,如果两个页面仅仅在页脚的生成时间有所不同,就可以认为二者是相同的。</p>
<p>当与  {{HTTPHeader("If-Modified-Since")}}  一同使用的时候,If-None-Match 优先级更高(假如服务器支持的话)。</p>