如何使用 html-pdf-node 生成多个 pdf



我需要为多个内容创建html到pdf,为此我使用html pdf节点。这是我的代码

let files = [
{ url: "<h1>Welcome to html-pdf-node</h1>", name: 'example.pdf' }, 
{ url: "<h1>Welcome to html-pdf-node</h1>", name: 'example.pdf' }
]
let options = { format: 'A4', path: 'mypdffile.pdf' };
const d = await htmlToPdf.generatePdfs(files, options)

它创建pdf,但仅创建一个名为mypdffile.pdf的文件。但我需要所有的pdf文件放在一个文件夹里。我找不到路。请帮助

如果你对这个包不满意,试试这个

html pdf-https://www.npmjs.com/package/html-pdf

或者尝试在循环中重命名文件名

相关内容

  • 没有找到相关文章

最新更新