我想通过一个支架哨所下载一个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);
}
});
});
Code 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上看到所有奇怪的迹象。 我想把国防军拯救到我的电脑中,但这项工作十分艰巨。
有些人知道如何解决这一问题?
提前感谢!