wkh237 8 anni fa
parent
commit
79390d573d
1 ha cambiato i file con 11 aggiunte e 0 eliminazioni
  1. 11
    0
      README.md

+ 11
- 0
README.md Vedi File

@@ -6,6 +6,7 @@ A project committed to make file acess and transfer easier and effiecient for Re
6 6
 * [About](#user-content-about)
7 7
 * [Installation](#user-content-installation)
8 8
 * [Recipes](#user-content-recipes)
9
+ * [Regular Request](#user-content-regular-request)
9 10
  * [Download file](#user-content-download-example--fetch-files-that-needs-authorization-token)
10 11
  * [Upload file](#user-content-upload-example--dropbox-files-upload-api)
11 12
  * [Multipart/form upload](#user-content-multipartform-data-example--post-form-data-with-file-and-data)
@@ -16,6 +17,7 @@ A project committed to make file acess and transfer easier and effiecient for Re
16 17
  * [File stream](#user-content-file-stream)
17 18
  * [Manage cached files](#user-content-cache-file-management)
18 19
  * [Self-Signed SSL Server](#user-content-self-signed-ssl-server)
20
+ * [Web API Polyfills](#user-content-web-api-polyfills)
19 21
 * [API References](https://github.com/wkh237/react-native-fetch-blob/wiki/Fetch-API)
20 22
 * [Trouble Shooting](https://github.com/wkh237/react-native-fetch-blob/wiki/Trouble-Shooting)
21 23
 * [Development](#user-content-development)
@@ -135,6 +137,10 @@ If you're using ES5 require statement to load the module, please add `default`.
135 137
 var RNFetchBlob = require('react-native-fetch-blob').default
136 138
 ```
137 139
 
140
+#### Regular Request
141
+
142
+TODO
143
+
138 144
 #### Download example : Fetch files that needs authorization token
139 145
 
140 146
 ```js
@@ -618,10 +624,15 @@ RNFetchBlob.config({
618 624
 })
619 625
 ```
620 626
 
627
+#### Web API Polyfills
628
+
629
+TODO
630
+
621 631
 ## Changes
622 632
 
623 633
 | Version | |
624 634
 |---|---|
635
+| 0.8.0 | Added Web API polyfills, support regular request, add buffer API |
625 636
 | 0.7.4 | Fix app crash problem in version > 0.27 |
626 637
 | 0.7.3 | Fix OkHttp dependency issue in version < 0.29 |
627 638
 | 0.7.2 | Fix cancel request bug |