aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api
diff options
context:
space:
mode:
authorzitup <yitongzhao@163.com>2021-08-10 22:33:21 +0800
committerGitHub <noreply@github.com>2021-08-10 22:33:21 +0800
commit3ab8eeb97a3ab086fa9cecc55e6ca363d26864e1 (patch)
treefafd8fc5095e23434089800bc5d5eef52001c785 /files/zh-cn/web/api
parentb3d1ed70cbc7136a6840e9fd4bfeb9f552711b7c (diff)
downloadtranslated-content-3ab8eeb97a3ab086fa9cecc55e6ca363d26864e1.tar.gz
translated-content-3ab8eeb97a3ab086fa9cecc55e6ca363d26864e1.tar.bz2
translated-content-3ab8eeb97a3ab086fa9cecc55e6ca363d26864e1.zip
Fix mistranslation Web/API/Fetch_API/Using_Fetch, zh-CN (#2005)
Diffstat (limited to 'files/zh-cn/web/api')
-rw-r--r--files/zh-cn/web/api/fetch_api/using_fetch/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/api/fetch_api/using_fetch/index.html b/files/zh-cn/web/api/fetch_api/using_fetch/index.html
index d08d605958..2aef1ba300 100644
--- a/files/zh-cn/web/api/fetch_api/using_fetch/index.html
+++ b/files/zh-cn/web/api/fetch_api/using_fetch/index.html
@@ -157,7 +157,7 @@ fetch('https://example.com/posts', {
<h3 id="检测请求是否成功">检测请求是否成功</h3>
-<p>如果遇到网络故障,{{domxref("GlobalFetch.fetch","fetch()")}} promise 将会 reject,带上一个 {{jsxref("TypeError")}} 对象。虽然这个情况经常是遇到了权限问题或类似问题——比如 404 不是一个网络故障。想要精确的判断 <code>fetch()</code> 是否成功,需要包含 promise resolved 的情况,此时再判断 {{domxref("Response.ok")}} 是不是为 true。类似以下代码:</p>
+<p>如果遇到网络故障或服务端的 CORS 配置错误时,{{domxref("GlobalFetch.fetch","fetch()")}} promise 将会 reject,带上一个 {{jsxref("TypeError")}} 对象。虽然这个情况经常是遇到了权限问题或类似问题——比如 404 不是一个网络故障。想要精确的判断 <code>fetch()</code> 是否成功,需要包含 promise resolved 的情况,此时再判断 {{domxref("Response.ok")}} 是不是为 true。类似以下代码:</p>
<pre class="brush: js notranslate">fetch('flowers.jpg').then(function(response) {
if(response.ok) {