html转pdf 使用的三方工具:
wkhtmltopdf
源码分析:
pdf_content = self._run_wkhtmltopdf(
bodies,
header=header,
footer=footer,
landscape=context.get('landscape'),
specific_paperformat_args=specific_paperformat_args,
set_viewport_size=context.get('set_viewport_size'),
)
可以看出要调用三方工具需要准备的数据有,body,header, footer,这下知道为什么header 和footer 能够在多个页面重复显示了吧.