当前位置: 首页 > 工具软件 > PDFKit > 使用案例 >

pdfkit Exit with code 1 due to network error: ProtocolUnknownError错误原因以及解决方法

卓云
2023-12-01

原因是本地文件访问权限被禁止了
解决方法:

pdfkit.from_string(body,"test.pdf")

变成

pdfkit.from_string(body,"test.pdf",options={"enable-local-file-access":True})
 类似资料: