【发布时间】:2020-10-08 21:43:22
【问题描述】:
我安装了这些软件包:“hbalkhi/yii2-pdf”:“dev-master”和“setasign/fpdi-tcpdf”:“1.6.2”。现在我正在尝试生成示例 pdf 文件,如下所示: https://packagist.org/packages/hbalkhi/yii2-pdf
不幸的是,我所能得到的只是:screenshot 我该如何解决?
【问题讨论】:
我安装了这些软件包:“hbalkhi/yii2-pdf”:“dev-master”和“setasign/fpdi-tcpdf”:“1.6.2”。现在我正在尝试生成示例 pdf 文件,如下所示: https://packagist.org/packages/hbalkhi/yii2-pdf
不幸的是,我所能得到的只是:screenshot 我该如何解决?
【问题讨论】:
解决办法如下:
Yii::$app->response->format = \yii\web\Response::FORMAT_RAW;
Yii::$app->response->headers->add('Content-Type', 'application/pdf');
return $this->render('tcpdf');
【讨论】: