我正在尝试从Django输出pdf。我正在使用weasyprint。这是我的看法:
def fleet_report_pdf(request):
template = loader.get_template("Reports/fleetreport.html")
context = {
'crews': models.Unit.objects.all().annotate(c=Count('memberunit__Member')),
's31': models.Member.objects.filter(memberunit__isnull=True)
}
html = template.render(RequestContext(request, context))
response = HttpResponse(content_type="application/pdf")
weasyprint.HTML(string=html, base_url=request.build_absolute_uri(), url_fetcher=request).write_pdf(response)
return response
pdf加载,但是页面未设置样式。进一步挖掘时,我在控制台中发现了类似以下错误:
Failed to load stylesheet at http://127.0.0.1:8000/static/css/layout.css : TypeError: 'WSGIRequest' object is not callable
Failed to load stylesheet at http://127.0.0.1:8000/static/css/darkblue.css : TypeError: 'WSGIRequest' object is not callable
Failed to load stylesheet at http://127.0.0.1:8000/static/css/custom.css : TypeError: 'WSGIRequest' object is not callable
这告诉我我缺少了一些东西。如何使样式表可调用?谢谢。
最佳答案
您正在request
调用(weasyprint.HTML
)中将url_fetcher=request
对象用作URL提取程序。您无需提供此参数即可获取不需要身份验证的简单资源。
有关URL提取程序的详细信息,请参见this。
关于css - 尝试使用weasyprint输出到pdf失败CSS,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33381008/