我正在使用knp snappy捆绑包从我的应用生成报告。但是当我调用我的控制器生成pdf时会发生下一个错误:
The exit status code '1' says something went wrong:
stderr: "Loading pages (1/6)
[> ] 0%
[======> ] 10%
[=======> ] 12%
Warning: Failed to load file:///gestionresiduospel/web/bundles/usuario/css/bootstrap.css (ignore)
Warning: Failed to load file:///gestionresiduospel/web/bundles/usuario/js/bootstrap.js (ignore)
[============================================================] 100%
Counting pages (2/6)
[============================================================] Object 1 of 1
Resolving links (4/6)
[============================================================] Object 1 of 1
Loading headers and footers (5/6)
Printing pages (6/6)
[> ] Preparing
[============================================================] Page 1 of 1
Done
Exit with code 1 due to network error: ContentNotFoundError
"
stdout: ""
command: "C:\Program Files\wkhtmltopdf\bin\wkhtmltopdf.exe" --lowquality "C:\Users\rodrigo\AppData\Local\Temp\knp_snappy5682878973ade7.09664058.html" "C:\Users\rodrigo\AppData\Local\Temp\knp_snappy56828789746968.46649162.pdf".
我的控制器是:
public function historicosDetallePdfAction($id)
{
$em = $this->getDoctrine()->getManager();
//gets residuos peligrosos.
$solicitudRetiro= $em->getRepository('SolicitudRetiroBundle:SolicitudRetiro')->find($id);
//gets residuos no peligrosos
$residuosPRetirados = $em->getRepository('SolicitudRetiroBundle:RetiroResiduo')->findResiduos($id);
//retorna los residuos no peligrosos en la solicitud
$residuosNPRetirados = $em->getRepository('SolicitudRetiroBundle:RetiroResiduoNoPeligroso')->findResiduosNoPeligrosos($id);
// view generator
$html = $this->renderView('SolicitudRetiroBundle:Pdf:resumenSolicitudResiduoRetirado.html.twig', array(
'solicitudRetiro' => $solicitudRetiro,
'residuosRetirados' => $residuosPRetirados,
'residuosNoPel' => $residuosNPRetirados ));
// pdf generator
return new Response(
$this->get('knp_snappy.pdf')->getOutputFromHtml($html),
200,
array(
'Content-Type' => 'application/pdf',
'Content-Disposition' => 'attachment; filename="historico.pdf"'
)
);
}
我复制了我的网址并使用 wkhtmltopdf.exe 进入控制台[CMD]。在控制台中我创建了pdf,但是当我看到该文件只显示我的登录屏幕时。所以我认为可能是关于允许进入我的控制器的问题,但我不知道如何通过这个。
另一方面,如果你知道另一个用于symfony的pdf生成器(来自html),这对我也有帮助。
我在symfony2.7
下工作答案 0 :(得分:5)
这意味着您的HTML文件中的某个资源无法由wkhtmltopdf加载,如果您的所有资源都拥有如下所示的绝对网址,请检查您的HTML文件:http://www.yourserver.com/images/myimage.jpg < / p>
如果情况并非如此,请尝试设置:
{{ app.request.schemeAndHttpHost ~ 'resource relative url' }}
如果您要在{% stylesheets %}
或{% javascript %}
或{% image %}
加载资产,您也可以
{{ app.request.schemeAndHttpHost ~ asset_url }}
答案 1 :(得分:0)
我曾经遇到过两种问题:
第一个是因为尝试转换* .js文件时kpn snappy失败了。所以我不得不在我的案例中使用* .js文件。
第二个是因为路径。我不得不使用绝对文件系统路径。通过这个,我的意思是,/home/ubuntu/workspace/bootstrap/css/bootstrap.css
这个用在* html.twig文件中使用的href标签中,然后由snappy转换为pdf。
通过这样做,我使用了一些枝条全局变量。
twig:
form:
resources:
- 'MyBundle:Form:fields.html.twig'
- 'MyUploaderBundle:Form:fields.html.twig'
debug: "%kernel.debug%"
strict_variables: "%kernel.debug%"
globals:
pathToWeb: "%kernel.root_dir%/../web"
bootstrapCss: "/home/ubuntu/workspace/MyApp/web/bootstrap/css/bootstrap.css"
mainCss: "/home/ubuntu/workspace/MyApp/web/css/main.css"
layoutCss: "/home/ubuntu/workspace/MyApp/web/css/layout.css"
在树枝上
<link rel="stylesheet" type="text/css" href="{{ bootstrapCss }}">
<link rel="stylesheet" type="text/css" href="{{ layoutCss }}">
<link rel="stylesheet" type="text/css" href="{{ mainCss }}">
答案 2 :(得分:0)
您可以使用absolute_url()
twig function {{ absolute_url(asset('assets/image.jpg')) }}