“Unduh File Axios NodeJs” Kode Jawaban

Unduh 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!');
    });
});
DevLorenz02

Cara mengunduh file menggunakan axios

axios({
    url: 'http://api.dev/file-download', //your url
    method: 'GET',
    responseType: 'blob', // important
}).then((response) => {
    const url = window.URL.createObjectURL(new Blob([response.data]));
    const link = document.createElement('a');
    link.href = url;
    link.setAttribute('download', 'file.pdf'); //or any other extension
    document.body.appendChild(link);
    link.click();
});
anonimus_desu

Jawaban yang mirip dengan “Unduh File Axios NodeJs”

Pertanyaan yang mirip dengan “Unduh File Axios NodeJs”

Lebih banyak jawaban terkait untuk “Unduh File Axios NodeJs” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya