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 ?
Dans Laravel
Dans Vue js
Réponse
responseType est un frère des en-têtes, pas un enfant
Merci Phil pour l'aide.