我一直在尝试通过axios从我的Laravel应用程序下载PDF,但是下载的文件是一个空的pdf。
我使用DomPdf创建pdf和download.js下载它是我的代码。
注意::如果我尝试在没有ajax请求的情况下下载它,它的工作正常。
Laravel,
return PDF::loadView('print', compact('bill'))->download($bill->number.'.pdf');
Javascript
``axios.get(`/bills/${id}/print` {
responseType: 'blob',Accept: 'application/pdf'
})
.then(response => {
const download = require('@/download');
// @ is just an alias for my root js directory.
download(response.data, `file.pdf`, 'application/pdf');
});``
请尝试以下代码:
在Laravel控制器中:
$pdf = PDF::loadView('finance.remainingFee', compact('fee', 'time'));
$pdf->setPaper('a4' , 'portrait');
return $pdf->output();
并在Vue文件中:
axios.get(APP_URL + `api/finance/remainingStudentFee/${fee_id}`, {responseType: 'blob'}).then(response => {
const url = window.URL.createObjectURL(new Blob([response.data]));
const link = document.createElement('a');
link.href = url;
link.setAttribute('download', 'remaining_fee.pdf'); //or any other extension
document.body.appendChild(link);
link.click();
})
.catch(error => {
console.log(error);
})