4

我制作了一个烧瓶应用程序,它使用 weasyprint 从 html 生成 .pdf 并将其作为附件发送。但显然没有应用 bootstrap 4 css。我找不到解决方案。它适用于 pdfkit,但我需要 weasyprint,因为 pythonanywhere.com 不支持 pdfkit。

我尝试链接引导程序,在我的 html 中使用引导程序 css 作为文件,但没有区别。

这是我的 python 部分,它生成并发送 pdf。

@app.route('/pdf_send', methods=('GET', 'POST'))
@login_required
def pdf_send():

    rendered = render_template(
    'pdf_send2.html', 
    name=name_g, 
    surname=surname_g,
    email=email_g,
    address=address_g,
    invoice_no=invoice_no_g,
    dict_g=dict_g,
    bendra_suma_g = ('%.2f' % round(float(bendra_suma_g[0]), 2)),
    send=send_g,
    today=today_g
    )

    css_file = ('static/bootstrap.css')
    filename = 'SF-' + invoice_no_g +'.pdf'
    html = HTML(string=rendered)
    css = CSS(filename=css_file)
    html.write_pdf(filename, stylesheets=[css])
    send_email(filename, email_g)

    return redirect(url_for('index'))
4

2 回答 2

2

我知道这是一个旧线程,但我在寻找相同问题的答案时偶然发现了它,所以我添加了我的解决方法,以防它帮助其他人。我首先要指出,尽管这确实有效,但 Bootstrap 确实不打算用于打印,并且 weasyprint 会忽略@media查询中的任何内容,因此无论如何您都需要添加大量 css 以让它正确渲染,所以它可能不值得。

使用原始问题中的代码,如果您将引导 cdn css 添加到stylesheets它将呈现的列表中:

html = HTML(string=rendered)
css = CSS(filename=css_file)
html.write_pdf(filename, stylesheets=[css, "https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"])

然而,考虑到 Bootstrap 渲染的问题,我发现这个技巧对于应用字体非常有用。

于 2019-06-26T19:17:59.237 回答
1

weasyprint 不适用于 bootstrap 。

为清楚起见,这是指向 Github 站点的参考链接。

WeasyPrint 将忽略您编写的任何引导类。

您可以在 WeasyPrint 错误日志中看到“Ignored ...”消息(如果您曾经启动过)。

所以最好在打印页面上使用 CSS

于 2018-04-10T10:59:12.257 回答