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

时间:2016-05-25 11:31:05

标签: printing header repeat jsrender jsreport

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

我想在所有页面上打印一些变量(但不在页眉或页脚中打印),并且所有页面上都应显示表格的标题。如何指定在所有页面上打印某些内容?

谢谢。

1 个答案:

答案 0 :(得分:1)

这可能与thead标签有关,默认情况下打印在长表的每一页上

<table>
  <thead>
    <tr><td>Repeated thing here</td></tr>
  </thead>
  <tbody>
     <tr>....</tr>
  </tbody>
</table>

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