Answers for "download axios from browser"

1

download file axios nodejs

axios.get('https://xxx/my.pdf', {responseType: 'blob'}).then(response => {
    fs.writeFile('/temp/my.pdf', response.data, (err) => {
        if (err) throw err;
        console.log('The file has been saved!');
    });
});
Posted by: Guest on March-03-2021
4

import axios

import axios from "axios";
Posted by: Guest on May-12-2020

Browse Popular Code Answers by Language