我想从局部视图树枝生成一个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'不存在。