uwsgi + wkhtmltopdf + Django不起作用

时间:2015-07-15 22:09:00

标签: python django nginx wkhtmltopdf uwsgi

我用nginx和uwsgi创建了Django应用程序的部署。我尝试使用wkhtmltopdf访问以pdf格式呈现的页面时打印以下错误:

  

命令'['wkhtmltopdf',' - encoding',u'utf8',' - quiet','/ tmp / wkhtmltopdfQuoAXk.html',' - ']'返回非零退出状态1

我认为wkhtmltopdf无法创建pdf,因为uwsgi请求不能直接用HTML解析。

你觉得呢?

1 个答案:

答案 0 :(得分:0)

我借助此评论解决了这个问题:https://github.com/incuna/django-wkhtmltopdf/issues/67#issuecomment-120930906

我在Django中默认将STATIC_URL更改为:

STATIC_URL = 'http://domain.com/static/'

我在模板中使用“静态”作为官方文档https://docs.djangoproject.com/en/1.8/howto/static-files/

的推荐

{% load staticfiles %}{% static 'js/jquery.min.js'%}"