我试图从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
这告诉我,我错过了一些东西。如何使样式表可调用?感谢。
答案 0 :(得分:4)
您在@Override
protected void onStop() {
super.onStop();
//Your code for implementing logout
}
电话(request
)中使用weasyprint.HTML
个对象作为网址抓取工具。您不需要提供此参数来获取不需要身份验证的简单资源。
有关网址提取程序的详细信息,请参阅this。