我想在用户点击按钮时生成并打开PDF。到目前为止,这是我的代码:
的index.php:
</html>
<head>
<script>
$('.cmd_butt').click(function() {
$.ajax({
url: 'create_pdf.php',
data: {id: $(this).attr('order_id'), name: $(this).attr('name')},
type: 'post'
});
}
</script>
</head>
<body>
<button class="cmd_butt" order_id="250" name="pdf_but">Download PDF</button>
</body>
</html>
create_pdf.php:
<?php
//header('Content-type: application/pdf')
header("Content-type: application-download");
//header("Content-Length: $size");
header("Content-Disposition: attachment; filename=MyPDF.pdf");
header("Content-Transfer-Encoding: binary");
require_once('tcpdf/config/lang/eng.php');
require_once('tcpdf/tcpdf.php');
// create new PDF document
// some code
// some code
//$pdf->Output('test.pdf', 'I');
//$pdf->Output('test.pdf', 'FD');
$pdf->Output();
?>
如何使用生成的PDF打开新窗口?或者通过“另存为”对话框通知用户下载此PDF?我尝试过不同的Output()组合,但都没有。
答案 0 :(得分:4)
你试过这个吗?
$pdf->Output('yourfilename.pdf','D');
这将提示用户选择保存PDF文件的位置。
答案 1 :(得分:3)
Ajax只能获取文本数据,不能直接显示PDF或在新窗口中显示(来自响应)。
您需要提交表单而不是AJAX,或者从ajax调用创建文件,并在响应中获取有关文件创建的响应。例如创建文件名,然后根据它打开一个新窗口。
答案 2 :(得分:0)
更改
<button class="cmd_butt" order_id="250" name="pdf_but">Download PDF</button>
到
<a href="create_pdf.php?order_id=250" target="_blank">Download PDF</a>
删除 index.php 中的java 删除 create_pdf.php
中的标题