diff options
author | t7yang <t7yang@gmail.com> | 2021-07-17 15:47:55 +0800 |
---|---|---|
committer | Irvin <irvinfly@gmail.com> | 2021-07-19 23:04:27 +0800 |
commit | 8af4d5e8a260f3474b4273d573532ec6fec08ab4 (patch) | |
tree | 2af9751507e1f973e5ddbd075d32e571df1c7658 /files/zh-tw/web/api | |
parent | 253bf68f4a0bb343bb556c9ba54c7f9410471e08 (diff) | |
download | translated-content-8af4d5e8a260f3474b4273d573532ec6fec08ab4.tar.gz translated-content-8af4d5e8a260f3474b4273d573532ec6fec08ab4.tar.bz2 translated-content-8af4d5e8a260f3474b4273d573532ec6fec08ab4.zip |
replace wiki links in zh-TW
Diffstat (limited to 'files/zh-tw/web/api')
-rw-r--r-- | files/zh-tw/web/api/fetch_api/using_fetch/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-tw/web/api/fetch_api/using_fetch/index.html b/files/zh-tw/web/api/fetch_api/using_fetch/index.html index 3af949b659..ae86951ce1 100644 --- a/files/zh-tw/web/api/fetch_api/using_fetch/index.html +++ b/files/zh-tw/web/api/fetch_api/using_fetch/index.html @@ -22,7 +22,7 @@ translation_of: Web/API/Fetch_API/Using_Fetch <ul> <li><code>fetch()</code> 回傳的 promise <strong>不會 reject HTTP 的 error status</strong>,就算是 HTTP 404 或 500 也一樣。相反地,它會正常地 resolve,並把 <code>ok</code> status 設為 false。會讓它發生 reject 的只有網路錯誤或其他會中斷 request 的情況。</li> <li><code>fetch</code> <strong>可以接收跨站的 cookies</strong>,你可以用 Fetch 來建立跨站的 session。</li> - <li><code>fetch</code> <strong>不會傳送 cookies</strong>,除非你有設定 credentials 的 <a href="https://wiki.developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters">init option</a>。 (Since <a href="https://github.com/whatwg/fetch/pull/585" rel="nofollow noopener">Aug 25, 2017</a>. The spec changed the default credentials policy to <code>same-origin</code>. Firefox changed since 61.0b13.)</li> + <li><code>fetch</code> <strong>不會傳送 cookies</strong>,除非你有設定 credentials 的 <a href="/zh-TW/docs/Web/API/WindowOrWorkerGlobalScope/fetch#Parameters">init option</a>。 (Since <a href="https://github.com/whatwg/fetch/pull/585" rel="nofollow noopener">Aug 25, 2017</a>. The spec changed the default credentials policy to <code>same-origin</code>. Firefox changed since 61.0b13.)</li> </ul> <h2 id="使用_Fetch_發送請求_request">使用 Fetch 發送請求 ( request )</h2> |