Answers for "await axios.post(url:'http://localhost:8000/api/register', data,{"

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 "await axios.post(url:'http://localhost:8000/api/register', data,{"

Browse Popular Code Answers by Language