pdf页脚不起作用
我对wicked_pdf页脚渲染没有任何问题。
这是我的渲染方法:
def invoice
render pdf: "#{@order.number}.pdf",
footer: { html: { template: "admin/orders/invoice_footer.html" } },
margin: { bottom: 25 }
end
PDF渲染工作正常,但没有页脚模板。 我在恶劣的环境中尝试了不同的利润,但没有成功。
刚刚有这个问题,问题似乎是我的wkhtmltopdf安装没有按要求生成页脚。
我使用的版本是通过Ubuntu存储库安装的,我没有安装这个版本,并下载了这里描述的预置版本,现在它工作正常:
https://github.com/mileszs/wicked_pdf/wiki/Getting-Started-Installing-wkhtmltopdf
我遇到了同样的问题,这是部分未呈现的问题。
所以这个答案https://stackoverflow.com/a/19323701/784318确实为我工作:
所以我改变了我的代码:
options = {
header: {html: {template: 'shared/_header', layout: nil}},
}
为此:
options = {
header: {content: render_to_string('shared/_header', layout: nil)},
}
链接地址: http://www.djcxy.com/p/63945.html