我正在使用 jsreport(通过 npm)使用 phantom-pdf 配方从 HTML 呈现 pdf。
渲染是通过 HTTPS 调用开始的:
...并且发布数据是这样的字符串:
{
"template": {
"content": /*...my HTML content template to render...*/,
"recipe": "phantom-pdf",
"engine": "handlebars"
},
"data": /*json string with data to pass to the template*/
}
我知道 phantom-pdf 有基本设置(边距、格式、宽度、高度、方向、printDelay、waitForJS),但我不明白将它们放在哪里: - 在 HTML 模板中?- 在 jsreport 的 dev.conig.json 文件中?- 在一个单独的文件中?
...如何?
先感谢您!