jsrender/jsreport - 如何在所有页面上打印一个变量

jsrender/jsreport - How to print a variable an all the pages

我正在使用 jsreport 并使用 jsrender 引擎生成 PDF 报告。

我想在所有页面上打印一些变量(但不在页眉或页脚中),并且 table 的页眉应该出现在所有页面上。如何指定在所有页面上打印内容?

谢谢。

这可能可以通过 thead 标签来实现,默认情况下,它会打印在长 table

的每一页上
<table>
  <thead>
    <tr><td>Repeated thing here</td></tr>
  </thead>
  <tbody>
     <tr>....</tr>
  </tbody>
</table>

不幸的是,这在所有打印引擎中都是错误的,因此您可能会遇到问题,这里提到了一些解决方法 https://github.com/ariya/phantomjs/issues/10927