I'm trying to build a "Export to CSV" system using ajax so this is my ajax call
$(document).on('click', '#export-csv', function(){
$.ajax({
url: export_url,
type: 'post',
data:{ validations: validations },
dataType: 'json',
cache: false,
timeout: 1000000,
success: function (data) {
var resp = data.response;
console.log(resp);
},
error: function (error) {
console.log(error);
}
});
});
and this is my php code to convert an array to csv
public function exportCsvAction()
{
$request = $this->getRequest();
if ($request->isPost()) {
$input = $request->getPost();
$response = $this->getResponse();
$file = fopen('php://output', 'w');
foreach ($input['validations'] as $line) {
fputcsv($file, $line, chr(9), '"');
}
fclose($file);
header('Content-type: text/csv; charset=utf-8');
header('Content-Disposition: attachment; filename="validations-' . time() . '.csv"');
return $response->setContent(\Zend\Json\Json::encode(array('response' => true)));
}
return $this->getResponse()->setStatusCode(400);
}
Everything is working. My ajax returns success but now I'm stuck...
How to download the file after a successfully ajax call? What is the next step?
I already did my research and I found nothing relevant and/or helpful.
Thanks in advance.
Try creating
a
element withhref
attribute set todata URI
of file usingURL.createObjectURL
,Blob
;download
attribute to set file name for "Save file" dialogReturn the url of the .csv file in your ajax call. Then in your success function put:
Just like all file types that are not naturally handled by the browser this will cause the browser to download the file.