我使用wkhtmltopdf在我的应用程序中生成pdf报告,但是当生成pdf时,我在pdf中获得了登录页面。
这是我的行动:
public function exportPdfAction($id = 0)
{
$em = $this->container->get('doctrine')->getEntityManager();
$id = $this->get('request')->get($this->admin->getIdParameter());
$object = $this->admin->getObject($id);
if (!$object) {
throw new NotFoundHttpException(sprintf('unable to find the object with id : %s', $id));
}
if (false === $this->admin->isGranted('VIEW', $object)) {
throw new AccessDeniedException();
}
$pageUrl = $this->generateUrl('admin_rh_leave_conge_show', array('id'=>$id), true); // use absolute path!
return new Response(
$this->get('knp_snappy.pdf')->getOutput($pageUrl),
200,
array(
'Content-Type' => 'application/pdf',
'Content-Disposition' => 'attachment; filename="Fiche_conge.pdf"'
)
);
}
我该如何解决这个问题?
答案 0 :(得分:6)
这有点晚了,但我遇到了完全相同的问题,并为此找到了解决方案:
您可以在getOutput()
- 方法中将选项作为第二个参数传递。其中一个选项是cookie
:
use Symfony\Component\HttpFoundation\Response;
...
$session = $this->get('session');
$session->save();
session_write_close();
return new Response(
$this->get('knp_snappy.pdf')->getOutput(
$pageUrl,
array('cookie' => array($session->getName() => $session->getId()))
),
200,
array(
'Content-Type' => 'application/pdf',
)
);
有关详细信息,请参阅http://wkhtmltopdf.org/和https://github.com/KnpLabs/KnpSnappyBundle/issues/42。
答案 1 :(得分:0)
我遇到了类似的问题。在我的情况下,脚本是从命令行运行的问题。问题是执行的用户没有在奏鸣曲管理员中进行身份验证。
因此,请确保您的pdf已登录用户,并且不会在生产和开发环境之间切换,这会丢失会话并且您必须重新登录。
因此,检查脚本是否正在调用snappy pdf生成并且是否具有sonata_admin_role(访问奏鸣曲管理员后端)。
希望有所帮助。
答案 2 :(得分:0)
2021:我仍然遇到完全相同的问题,但发现 Iris Schaffer 的公认解决方案有点脏。所以这是另一种方式。您可以在您所在的控制器中生成 html。
我们使用 ->getOutputFromHtml() 代替 ->getOutput()
/**
* @Route("/dossiers/{dossier}/work-order/download", name="download_work_order")
* @Security("is_granted('DOWNLOAD_WORK_ORDER', dossier)")
*
* @param Dossier $dossier
* @return Response
*/
public function generateWorkOrderPdfAction(Dossier $dossier): Response
{
/**
* Since we are a valid logged-in user in this controller we generate everything in advance
* So wkhtmltopdf does not have login issues
*/
$html = $this->forward('PlanningBundle\Controller\WorkOrderController::generateWorkOrderHTMLAction', [
'dossier' => $dossier,
])->getContent();
$options = [
'footer-html' => $this->renderView('@Dossier/PDF/footer.html.twig', [
'dossier' => $dossier,
]),
];
return new Response(
$this->get('knp_snappy.pdf')->getOutputFromHtml($html, $options),
200,
[
'Content-Type' => 'application/pdf',
'Content-Disposition' => 'attachment; filename="work-order-' . $dossier->getName() . '.pdf"',
]
);
}