recherche

Maison  >  Questions et réponses  >  le corps du texte

Téléchargez le pdf depuis l'API Laravel via Axios dans VueJS 3

Bonjour, j'ai un frontend VUEJS 3 et un backend Laravel 8. Je vais télécharger le pdf enregistré dans public/pdf/temp/file.pdf

Maintenant, je passe un appel depuis VUEJS :

axios.post('/api/'+ this.url_access +'/rebuild', formData, { headers: {
                'Content-Type': 'multipart/form-data',
                'responseType': 'blob'
            }})
            .then(response=>{
                if(response.status == 200){
                    const url = window.URL.createObjectURL(new Blob([response.data]));
                    const link = document.createElement('a');
                    link.href = url;
                    link.setAttribute('download', 'test.pdf');
                    document.body.appendChild(link);
                    link.click();
                }
            })
            .catch(error=>{
                console.log(error);
            })

Dans le backend j'ai une fonction qui renvoie un fichier pdf :

try{
   $headers = [
       'Content-Type' => 'application/pdf',
   ];
   return response()->download($file_path, $workspace['name'] . '_' .date("Ymd").'.pdf', $headers)->deleteFileAfterSend(true);
}catch(Exception $e){
   return $e->getMessage();
}

Mais j'ai téléchargé le pdf avec un contenu vierge.

Quelqu'un a-t-il une idée sur ce problème ?

P粉993712159P粉993712159384 Il y a quelques jours1062

répondre à tous(2)je répondrai

  • P粉610028841

    P粉6100288412023-11-17 11:46:38

    Dans Laravel

    $pdf = PDF::loadView('users.pdf', ['data' => $data]);
     return $pdf->output();

    Dans Vue js

    axios({
      url: 'http://localhost:8000/api/your-route',
      method: 'GET',
      responseType: 'blob',
    }).then((response) => {
     var fileURL = window.URL.createObjectURL(new Blob([response.data], {type: 
     'application/pdf'}));
     var fileLink = document.createElement('a');
     fileLink.href = fileURL;
     fileLink.setAttribute('download', 'file.pdf');
     document.body.appendChild(fileLink);
     fileLink.click();
     });

    répondre
    0
  • P粉722521204

    P粉7225212042023-11-17 10:00:02

    Réponse

    responseType est un frère des en-têtes, pas un enfant

    axios.post('/api/'+ this.url_access +'/rebuild', formData, { headers: {
                    'Content-Type': 'multipart/form-data',
                },
                    'responseType': 'blob' // responseType is a sibling of headers, not a child
                })
                .then(response=>{
                    if(response.status == 200){
                        const url = window.URL.createObjectURL(new Blob([response.data]));
                        const link = document.createElement('a');
                        link.href = url;
                        link.setAttribute('download', 'test.pdf');
                        document.body.appendChild(link);
                        link.click();
                    }
                })
                .catch(error=>{
                    console.log(error);
                })

    Merci Phil pour l'aide.

    répondre
    0
  • Annulerrépondre