We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2585e72 commit f3dbf39Copy full SHA for f3dbf39
.gitignore
@@ -1 +1,22 @@
1
-npm-debug.log
+git # OS X
2
+Icon?
3
+._*
4
+
5
+# Windows
6
+Thumbs.db
7
+ehthumbs.db
8
+Desktop.ini
9
10
+# Linux
11
+.directory
12
+*~
13
14
+# npm
15
+node_modules
16
+dist
17
+*.gz
18
19
+# webstorm
20
+.idea/
21
22
docs/arraybuffer.md
@@ -894,8 +894,8 @@ Fetch API取回的数据,就是`ArrayBuffer`对象。
894
895
```javascript
896
fetch(url)
897
-.then(function(request){
898
- return request.arrayBuffer()
+.then(function(response){
+ return response.arrayBuffer()
899
})
900
.then(function(arrayBuffer){
901
// ...
0 commit comments