From 037153b7bf1f891a700f3064f90b840d294c0dec Mon Sep 17 00:00:00 2001 From: hans <1048340468@qq.com> Date: Wed, 28 Feb 2024 15:19:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=A4=9A=E4=BD=99=E7=9A=84=E7=AC=A6?= =?UTF-8?q?=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 5-network/05-fetch-crossorigin/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5-network/05-fetch-crossorigin/article.md b/5-network/05-fetch-crossorigin/article.md index 4ace5ef064..98deb31e72 100644 --- a/5-network/05-fetch-crossorigin/article.md +++ b/5-network/05-fetch-crossorigin/article.md @@ -318,7 +318,7 @@ JavaScript 仅获取对主请求的响应,如果没有服务器许可,则获 这对于 HTTP 请求来说并不常见。通常,对 `http://site.com` 的请求附带有该域的所有 cookie。但是由 JavaScript 方法发出的跨源请求是个例外。 -例如,`fetch('http://another.com')` 不会发送任何 cookie,即使那些 (!) 属于 `another.com` 域的 cookie。 +例如,`fetch('http://another.com')` 不会发送任何 cookie,即使是那些属于 `another.com` 域的 cookie。 为什么?