We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 564ab11 commit 66dcfdaCopy full SHA for 66dcfda
1 file changed
docs/bom/xmlhttprequest.md
@@ -95,7 +95,7 @@ if (xhr.readyState === 4) {
95
}
96
```
97
98
-上面代码中,`xhr.readyState`等于`4`时,表明脚本发出的 HTTP 请求已经成功。其他情况,都表示 HTTP 请求还在进行中。
+上面代码中,`xhr.readyState`等于`4`时,表明脚本发出的 HTTP 请求已经完成。其他情况,都表示 HTTP 请求还在进行中。
99
100
### XMLHttpRequest.onreadystatechange
101
@@ -247,7 +247,7 @@ xhr.send(null);
247
248
- 200, OK,访问正常
249
- 301, Moved Permanently,永久移动
250
-- 302, Move temporarily,暂时移动
+- 302, Moved temporarily,暂时移动
251
- 304, Not Modified,未修改
252
- 307, Temporary Redirect,暂时重定向
253
- 401, Unauthorized,未授权
0 commit comments