使用JSON和ExtJS将MPDF结果返回给浏览器

时间:2015-01-29 17:22:11

标签: javascript php json extjs mpdf

我使用mpdf在我的php代码中创建pdf报告。当我使用Output($ pdfFilePath)保存时,我可以看到pdf文件,但是需要使用json将其返回到浏览器而不将其保存在服务器上,因此我使用了Output($ pdfFilePath,“D”)。下面是我的代码,但它返回一个空的html页面:

php中的

服务器端代码:

$report = $this->load->view('report', $data, true);

$pdfFilePath = "the_pdf_output.pdf";

$this->load->library('m_pdf');

$pdf = $this->m_pdf->load();
$pdf->SetDisplayMode('fullpage');
$pdf->WriteHTML($report);

    $result["success"] = true;
    $result["data"] =$pdf->Output($pdfFilePath,"D");
    $result["extra"] = $row->extra;

    echo json_encode($result);

extjs的前端:

        success: function(xhr) {

                    var response = Ext.decode(xhr.responseText);
                    if (response.success) {
                        var html =response.data.replace(/\//g, '')
                        ui_print(html);
                     } else {
                        Ext.example.msg('Error', 'Oops, there has been a problem!');
                    }
               }

1 个答案:

答案 0 :(得分:0)

你应该输出as a string

$result["data"] =$pdf->Output($pdfFilePath,"S");

使用D直接将数据发送到浏览器

此外,我不确定EXT.decode是什么,但我通常使用JSON.parse来使用ajax中的json:

var response = JSON.parse(xhr.responseText);
console.log(response['data']);

话虽如此,我不确定在json文件中解析pdf文件的效果如何......