yii2响应格式化程序未被调用

时间:2015-01-27 19:33:23

标签: pdf yii2 responseformat

我正在尝试使用robregonm pdfresponseFormatter来创建PDF,问题是,pdf类永远不会被称为格式响应类型。

    'response' => [
        'formatters' => [
            'html' => [
                'class' => 'yii\web\HtmlResponseFormatter',
            ],
            'pdf' => [
                'class' => 'robregonm\pdf\PdfResponseFormatter',
                'mode' => '',
                'format' => 'A4',
                'defaultFontSize' => 0,
                'defaultFont' => '',
                'marginLeft' => 15,
                'marginRight' => 15,
                'marginTop' => 16,
                'marginBottom' => 16,
                'marginHeader' => 9,
                'marginFooter' => 9,
            ]
        ]
    ],
....
$file = $this->getPdf($report);
....
private function getPdf($report){
    Yii::$app->response->format = 'pdf';

   Yii::$container->set(Yii::$app->response->formatters['pdf']['class']);

    $this->layout = '//attachment';

    return $this->render('pdf/actionplan', ['model' => $report]);
}

$ file变量在视图中包含HTML文本

2 个答案:

答案 0 :(得分:0)

你问的是错误的问题。当然$ file中有HTML,你从视图中返回HTML。

Yii::$app->response->format = 'pdf'; 

在控制器向浏览器返回响应时起作用。

您想问的是为什么控制器功能(我希望它在控制器中)不会返回从HTML创建的PDF。

如果您只想保存PDF,请查看我如何处理此问题:actionPdf函数中的https://github.com/Mihai-P/yii2-core/blob/master/components/Controller.php。该函数返回一个文件,如果需要,可以保存在服务器上。

答案 1 :(得分:0)

不幸的是,我无法让这个扩展工作。我确实让kartik pdf工作得很好

我建议改用kartik扩展程序。