如何将调查 PDF 保存到磁盘上
我想将一些使用“survey-pdf”创建的 PDF 保存在我的磁盘上。 实际上,我可以发送 PDF,但无法将其保存在磁盘上。
我的最终代码:
return surveyPDF.save(filename);
有人可以帮助我吗?
谢谢
I want to save somes PDF created with 'survey-pdf' on my disk.
Actually, i can send the PDF but i can't save it on my disk.
My final code :
return surveyPDF.save(filename);
Someone can help me ?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你能尝试一下吗
?
.save
似乎是一个下载PDF文件的异步函数。来自文档
#2 如果第一种方法不起作用,您可以尝试一下
这里您正在使用
.raw
函数将PDF转换为dataurlstring
,然后下载它。 这是相关文档*未经测试
Can you try
?
.save
seems to be an asynchronous function that downloads the PDF file.From the docs
#2 If the first method doesn't work, you can try this
Here you are using the
.raw
function to transform the PDF into adataurlstring
and then downloading that. Here's the docs for this*Not tested