2

我在我的应用程序中使用 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"'

        )
    );   
}

我该如何解决这个问题?

4

3 回答 3

6

这有点晚了,但我遇到了完全相同的问题,并找到了解决方案:您可以在getOutput()-method 中将选项作为第二个参数传递。这些选项之一是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

于 2014-04-05T12:35:02.873 回答
0

我对那个捆绑包也有类似的问题。在我的情况下,脚本是从命令行运行的问题。问题是执行的用户未在奏鸣曲管理员中进行身份验证。

因此,请确保您调用 pdf 的用户是登录用户,并且不要在生产环境和开发环境之间切换,否则会丢失会话并且您必须重新登录。

因此,请检查调用 snappy pdf 生成的脚本是否已正确验证并具有 sonata_admin_role(访问 sonata 管理后端)。

希望有帮助。

于 2013-08-05T08:13:16.297 回答
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"',
        ]
    );
}
于 2021-02-10T15:58:45.320 回答