cakephp 3和fpdf无法以视图的形式呈现pdf

时间:2015-12-06 14:21:36

标签: php cakephp pdf fpdf

**Controller**                  : Test
**View where the form resides** : index.ctp
**View containing fpdf code**   : pdf.ctp

我使用FPDF生成pdf文件,但pdf文件无法正确呈现。我已经确认FPDF代码没有错误。

在网址

localhost/project/test

我将填写表格并按提交。这将提交给

localhost/project/test/pdf

但是这里的pdf没有正确呈现。它只是继续告诉Loading。

如果我将其提交到其他文件夹/ p​​df.php文件(php文件中的相同fpdf代码) 一切都很好

localhost/fpdf/pdf.php

1 个答案:

答案 0 :(得分:0)

我自己回答了我的问题。来吧人们帮助我!!

问题是输出没有呈现为pdf。我用这个控制器解决了我的问题。

public function pdf()
{
    $this->response->type('pdf');
}
相关问题