From 0bf13ec4b36079d28a227ba6efe0cc842cdb2894 Mon Sep 17 00:00:00 2001 From: LeviDing Date: Fri, 10 Apr 2020 18:33:22 +0800 Subject: [PATCH] Update article.md --- 5-network/06-fetch-api/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5-network/06-fetch-api/article.md b/5-network/06-fetch-api/article.md index aea14320..edd361e5 100644 --- a/5-network/06-fetch-api/article.md +++ b/5-network/06-fetch-api/article.md @@ -89,7 +89,7 @@ Possible values are described in the [Referrer Policy specification](https://w3c - **`"no-referrer"`** -- never send `Referer`. - **`"origin"`** -- only send the origin in `Referer`, not the full page URL, e.g. only `http://site.com` instead of `http://site.com/path`. - **`"origin-when-cross-origin"`** -- send full `Referer` to the same origin, but only the origin part for cross-origin requests (as above). -- **`"same-origin"`** -- send full `Referer` to the same origin, but no referer for for cross-origin requests. +- **`"same-origin"`** -- send full `Referer` to the same origin, but no `Referer` for cross-origin requests. - **`"strict-origin"`** -- send only origin, don't send `Referer` for HTTPS→HTTP requests. - **`"strict-origin-when-cross-origin"`** -- for same-origin send full `Referer`, for cross-origin send only origin, unless it's HTTPS→HTTP request, then send nothing. - **`"unsafe-url"`** -- always send full url in `Referer`, even for HTTPS→HTTP requests.