2

当用户单击按钮时,我想生成并打开 PDF。到目前为止,这是我的代码:

索引.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>

创建_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() 组合,但都没有奏效。

4

3 回答 3

4

你试过这个

$pdf->Output('yourfilename.pdf','D');

这将提示用户选择保存 PDF 文件的位置。

于 2013-02-20T11:10:59.063 回答
3

Ajax 只能获取文本数据,它不能直接或在新窗口中显示 PDF(来自响应)。

您需要提交表单而不是 AJAX,或者从 ajax 调用创建一个文件,作为响应,获取有关创建文件的响应。例如创建的文件名,然后基于它打开一个新窗口。

于 2013-02-20T11:22:42.977 回答
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
中的标头

于 2013-03-28T10:47:32.073 回答