2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-05 16:42:32 +03:00

Merge pull request #741 from model3volution/Update/readme

adding sample code to GET images
This commit is contained in:
Matt Zabriskie
2017-04-03 14:17:30 -07:00
committed by GitHub
+13 -1
View File
@@ -125,6 +125,18 @@ axios({
});
```
```js
// GET request for remote image
axios({
method:'get',
url:'http://bit.ly/2mTM3nY',
responseType:'stream'
})
.then(function(response) {
response.data.pipe(fs.createWriteStream('ada_lovelace.jpg'))
});
```
##### axios(url[, config])
```js
@@ -528,7 +540,7 @@ In a browser, you can use the [`URLSearchParams`](https://developer.mozilla.org/
var params = new URLSearchParams();
params.append('param1', 'value1');
params.append('param2', 'value2');
axios.post('/foo', params);
axios.post('/foo', params);
```
> Note that `URLSearchParams` is not supported by all browsers, but there is a [polyfill](https://github.com/WebReflection/url-search-params) available (make sure to polyfill the global environment).