“Pobierz plik axios nodejs” Kod odpowiedzi

Pobierz plik 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

Jak pobierać pliki za pomocą 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

Odpowiedzi podobne do “Pobierz plik axios nodejs”

Pytania podobne do “Pobierz plik axios nodejs”

Więcej pokrewnych odpowiedzi na “Pobierz plik axios nodejs” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu