0

我想从扩展另一个视图的部分视图树枝生成一个 pdf 文件。这就是我从局部视图生成 PDF 的方式:

public function generatePdfAction(Request $request)
{
   //initialize $employee

    $html = $this->renderView('PFEEmployeesBundle:Employee:view.html.twig',
        array('employee'=> $employee)
    );

    return new Response(
        $this->get('knp_snappy.pdf')->getOutputFromHtml($html,array(
            "id"=>"bloc"
        )),
        200,
        array(
            'Content-Type'          => 'application/pdf',
            'Content-Disposition'   => 'attachment; filename="file.pdf"'
        )
    );
}

它给了我这个错误:

选项“id”不存在。

4

0 回答 0