KnpSnappyBundle-wkhtmltopdf:已加载CSS /图像,但未加载脚本

时间:2018-11-09 10:51:56

标签: symfony wkhtmltopdf knp-snappy

从HTML生成的PDF的样式和图像加载得很好,但脚本加载得不好。

twig:
        debug: '%kernel.debug%'
        strict_variables: '%kernel.debug%'
        form_themes: ['bootstrap_4_horizontal_layout.html.twig']
        globals:
            pathToWeb: "%kernel.project_dir%/web"

knp_snappy:
    pdf:
        enabled:    true
        binary:     /usr/bin/wkhtmltopdf --javascript-delay 5000 --no-stop-slow-scripts --enable-javascript --debug-javascript --margin-top 0 --margin-bottom 0 --margin-left 0 --margin-right 0
        options:    []

DockerFile(带有补丁qt的wkhtmltopdf 0.12.3(我在页眉和页脚中都需要它)

RUN apt-get install libssl1.0-dev -y
RUN cd ~
RUN wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.3/wkhtmltox-0.12.3_linux-generic-amd64.tar.xz
RUN tar vxf wkhtmltox-0.12.3_linux-generic-amd64.tar.xz 
RUN cp wkhtmltox/bin/wk* /usr/bin/

base.html.twig

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8" />
        <title>{% block title %}Meetings manager{% endblock %}</title>
        {% block stylesheets %}
            <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
            <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
            <link href="https://fonts.googleapis.com/css?family=Lato:400,700" rel="stylesheet">
            <link rel="stylesheet" href="{{ absolute_url(asset('css/navbar.css')) }}">
            <link rel="stylesheet" href="{{ absolute_url(asset('css/general.css')) }}">
        {% endblock %}
        <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
    </head>
    <body>
        {% block body %}{% endblock %}
        <script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
        <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
    </body>
</html>

然后扩展此模板,然后加载图像,例如:

<img style="width: 100%;" src="{{pathToWeb ~ asset('image/emargement_top.png') }}">

如果我插入,看来可以执行javascript

<script>document.write("test");</script>

它有效,但其他脚本不起作用。

我尝试过

    <script src="{{ absolute_url(asset('pdf/js/bootstrap.js')) }}"></script>
    <script src="{{ absolute_url(asset('pdf/js/jquery-3.3.1.js')) }}"></script>

    <script src="{{pathToWeb ~ asset('pdf/js/bootstrap.js')) }}"></script>
    <script src="{{pathToWeb ~ asset('pdf/js/jquery-3.3.1.js')) }}"></script>

它也不起作用(如您所见,我已经将脚本的本地版本放在了Web文件夹中)

蓄意

  • CSS的工作原理(自定义CSS和引导CSS)
  • 图像有效
  • 可以执行Java语言
  • jQuery和Bootstrap脚本未加载(Bootstrap网格不起作用)

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

我看到您正在使用bootstrap 4(flexbox)。 wkhtmltopdf稳定版本(0.12.x)不支持此功能。有关更多信息,see here。不幸的是,目前没有开发活动,因此可能需要很长时间才能得到支持。

还有一些不完整的替代方案,例如puppeteer(目前还没有TOC)。