using AJAX and Jquery to create pdf using FPDF

后端 未结 2 1166
暖寄归人
暖寄归人 2020-12-19 03:18

I am trying to create pdf file using FPDF.

What I right now have is an HTML page with various lines of data and a print button next to it. When someone clicks Print

相关标签:
2条回答
  • 2020-12-19 03:57

    To load a PDF via ajax you could try:

    • Use some of the PDF javascript libraries to render PDF directly from javascript without plugins, like mozilla pdf.js or jspdf . And try to see if those libraries let you set the pdf directly from binary data (what you receive in ajax).

    • Another option is receive the pdf data as base64 encoded and the use a Data URI to set window.location.href to that data uri, although in that case it's possible the PDF is offered as a dowload dialog instead of loading directly in the page, you have to test that. Also data uri support is very limited for pdf in IE 8 and older, see the wikipedia data uri page for more details.

    • Also see this answer about how it's not possible to load pdf directly from ajax and what other options you have to try to do what you want (mainly saving pdf as temporary file on server and use it with window.location.href or <iframe> or window.open )

    0 讨论(0)
  • 2020-12-19 04:01

    You should open a new page using <a> tag with your PHP page print.php with your variables.

    <a href="print.php?data" target="_blank">click me to download the file</a>

    In the PHP page, add headers

    // Send Headers
    header('Content-type: application/pdf');
    header('Content-Disposition: attachment; filename="myPDF.pdf');
    
    // Send Headers: Prevent Caching of File
    header('Cache-Control: private');
    header('Pragma: private');
    header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
    

    Try to play with header header('Content-type: application/force-download'); to download automatically your file.

    You could also display your PDF data like if the file has been saved readfile('original.pdf');

    0 讨论(0)
提交回复
热议问题