When I am trying to use the download button to download file in laravel ajax, it is not working properly and I am not able to download file.
Below is my code:
JavaScript
x
2
1
<button type="button" request_id="'.$data->id.'" class="btn btn-success download_request_btn" > Download </button>';
2
Controller:
JavaScript
1
13
13
1
public function downloadReport(Request $request)
2
{
3
$request_id = $request->request_id;
4
$downloadReport = Upload::where('id', $request_id)->first();
5
$upload_report = $downloadReport->upload_report;
6
$headers = array(
7
'Content-Type: application/pdf',
8
'Content-Type: application/docx',
9
);
10
$url= url('storage/documents/request/'. $upload_report);
11
return response()->download($url);
12
}
13
Ajax:
JavaScript
1
17
17
1
$(document).on('click', '.download_request_btn', function(){
2
var request_id = $(this).attr('request_id');
3
console.log(request_id);
4
var formData = new FormData();
5
formData.append('request_id',request_id);
6
jQuery.ajax({
7
type: "post",
8
url: site_url+"/DownloadAjax",
9
data: formData,
10
contentType:false,
11
processData:false,
12
success: function (res) {
13
14
}
15
});
16
});
17
Advertisement
Answer
Just to pseudo-code it up with trusting your data is coming back as desired I think you need to trigger the download in your success callback with a variation of the following (may need to adjust to your need):
JavaScript
1
21
21
1
$(document).on('click', '.download_request_btn', function(){
2
var request_id = $(this).attr('request_id');
3
console.log(request_id);
4
var formData = new FormData();
5
formData.append('request_id',request_id);
6
jQuery.ajax({
7
type: "post",
8
url: site_url+"/DownloadAjax",
9
data: formData,
10
contentType:false,
11
processData:false,
12
success: function (res) {
13
const data = res;
14
const link = document.createElement('a');
15
link.setAttribute('href', data);
16
link.setAttribute('download', 'yourfilename.extensionType'); // Need to modify filename ...
17
link.click();
18
}
19
});
20
});
21