How to download PDF File Generated from TCPDF (PHP) using AJAX (jQuery)?

后端 未结 4 1459
粉色の甜心
粉色の甜心 2021-01-18 09:33

I am using Yii Framework, TCPDF and jQuery to generate a pdf.

The pdf is generated by inputing in a form and submitting it using ajax.

The pdf is created but

4条回答
  •  梦毁少年i
    2021-01-18 10:03

    in tcpdf , just pass this argument the Output method:

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

    that's all

提交回复
热议问题