Answers for "axios js axios post example"

10

axios cdn

<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
Posted by: Guest on July-16-2020
1

Using axios send a GET request to the address:

// 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'))
});
Posted by: Guest on April-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language