我正在尝试使用pdfkit将字符串html转换为pdf文件。这就是我正在做的事情
try:
options = {
'page-size': 'A4',
'margin-top': '0.75in',
'margin-right': '0.75in',
'margin-bottom': '0.75in',
'margin-left': '0.75in',
}
config = pdfkit.configuration(wkhtmltopdf="/usr/local/bin/wkhtmltopdf")
str= "Hello!!"
pdfkit.from_string(str,"Somefile.pdf",options=options,configuration=config)
return HttpResponse("Works")
except Exception as e:
return HttpResponse(str(e))
然而在from_string
我得到例外' str'对象没有属性解码。有关如何解决此问题的任何建议?我使用的是Python 3.5.1
答案 0 :(得分:1)
尝试用这个替换配置行 - 二进制路径作为字节对象提供:
@angular/platform-server