我想通过 jquery 帖子下载 pdf 文件。我试过这个:
$('#downloadPdf').click(function() {
var id = $('#fileId').val();
$.ajax({
type: "POST",
url: "includes/download_pdf.php",
data: 'file_id=' + id,
complete: function(data) {
$('#pdf_results').html(data.responseText);
}
});
});
代码PHP:
<?php
$file_name = $_POST['file_id'];
// We'll be outputting a PDF header('Content-type: application/pdf');
// It will be called downloaded.pdf header('Content-Disposition: attachment; filename="'.$file_name.'.pdf"');
// The PDF source is in original.pdf readfile('/var/www/vhosts/domain.nl/private/'.$file_name.'.pdf');
?>
当我使用这段代码时,我得到了所有奇怪的登录#pdf_results
。我想将 PDF 保存到我的计算机,但这不起作用。
有人知道如何解决这个问题吗?
提前致谢!