我使用dompdf创建一个pdf文档(动态)。我必须将任何数据发布到这个pdf中,所以我使用ajax。
这是PHP dompdf:
<?php
class Dompdfgenerator
{
public function generate($html,$filename){
define('DOMPDF_ENABLE_AUTOLOAD', false);
require_once("./vendor/dompdf/dompdf/dompdf_config.inc.php");
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
$dompdf->stream($filename.'.pdf',array("Attachment"=>0));
}
}
所以,我使用ajax发布大量数据来创建一个像这样的php文件的pdf文件。
这是ajax:
var result = $("#hasil-pencarian").clone().find('td:last-child').remove().end().html();
$.ajax({
url: "<?= site_url('members/megumi/cek_list_wire_rod/generate_pdf_laporan') ?>",
type: 'POST',
data: {
result: result,
id_pendukung: $('.printLaporan').attr('data-id')
},
dataType: 'json',
success: function (response) {
open a new window
},
error: function () {
alert('Terjadi masalah di server saat print laporan');
}
});
这是使用dompdf的php。
public function generate_pdf_laporan() {
$this->load->library('dompdfgenerator');
$data= array(
'result' => $this->input->post('result')
);
$html = $this->load->view('members/megumi/check_list_of_wire_rod/v_laporan_check_list', $data, true);
$this->dompdfgenerator->generate($html, 'contoh');
}
这是html为pdf
<!DOCTYPE html>
<html>
<head>
<title>Report Table</title>
<style type="text/css">
#outtable{
padding: 20px;
border:1px solid #e3e3e3;
width:600px;
border-radius: 5px;
}
.short{
width: 50px;
}
.normal{
width: 150px;
}
table{
border-collapse: collapse;
font-family: arial;
color:#5E5B5C;
}
thead th{
text-align: left;
padding: 10px;
}
tbody td{
border-top: 1px solid #e3e3e3;
padding: 10px;
}
tbody tr:nth-child(even){
background: #F6F5FA;
}
tbody tr:hover{
background: #EAE9F5
}
</style>
</head>
<body>
<div id="outtable">
<table>
<thead>
<tr>
<th class="short">No</th>
<th class="normal">First Name</th>
<th class="normal">Last Name</th>
<th class="normal">Username</th>
</tr>
</thead>
<tbody>
<?php echo $result ?>
</tbody>
</table>
</div>
我怎样才能使这个html pdf在ajax成功的新浏览器窗口中打开,有什么建议吗? 感谢您的帮助,非常感谢。
答案 0 :(得分:0)
使用window.open
window.open("http://path_pdf_file");
用于将pdf保存到磁盘的php:
$output = $dompdf->output();
file_put_contents($filename.'.pdf', $output);
答案 1 :(得分:0)
如果你想避免在文件系统中保留pdf文件,你的ajax处理程序var timeBinary = new byte[] { 0x00, 0xEF, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00 };
var lengths = new byte[] { 0x03, 0x03, 0x03, 0x04, 0x04, 0x05, 0x05, 0x05 };
int scale = timeBinary[0];
int length = lengths[scale];
long ticksValue = 0;
for (int i = length; i > 0; --i) {
ticksValue = ticksValue * 256 + timeBinary[i];
}
long scaleFactor = 10000000; // 10^7
for (int i = 0; i < scale; ++i) {
scaleFactor /= 10;
}
var ticks = ticksValue * scaleFactor;
var time = TimeSpan.FromTicks(ticks);
应该只在会话中存储members/megumi/cek_list_wire_rod/generate_pdf_laporan
ed数据以允许另一个php脚本,比方说$POST
,使用get_pdf
函数使用此数据呈现pdf。在这种情况下,您的generate_pdf_laporan
函数将非常简单:
success
建议在success: function (response) {
window.open('/members/megumi/cek_list_wire_rod/get_pdf', '_blank');
}
中设置正确的MIME类型:
get_pdf