我正在使用wicked_pdf为我的rails应用程序生成pdf。 我试图在生成的pdf的页脚上呈现动态html内容。
我在控制器中实现了以下代码:
#app/controllers/receipts_controller.rb
def generate_receipt
html = render_to_string(:action => 'print_receipt',
:layout => false)
pdf = WickedPdf.new.pdf_from_string(html,
:encoding => 'UTF-8',
:page_size => 'A4',
:orientation => 'Portrait',
#:footer => { :content => "This is my footer content."},
:footer => { :html => { :template => 'footer.html.erb' } } )
send_data(pdf, :filename => get_file_name, :disposition => 'attachment')
end
如果我只使用静态内容(请查看上面注释的部分),那么它按预期工作。 但它无法从提供的模板位置加载页脚内容。
我的页脚位于:
#app/views/receipts/footer.html.erb
<div class='rec-foot'> This is my footer content (this is dynamic) </div>
这就是我的打印模板的方式:
#app/views/receipts/print_receipt.html.erb
<htmL>
<head>
<%= wicked_pdf_stylesheet_link_tag "wicked_pdf" %>
</head>
<body>
<!--- my pdf page content goes here -->
</body>
</html>
# app/assets/stylesheets/wicked_pdf.css
.rec-foot{
font-weight: bold;
text-align: center;
}
问题:没有为动态html内容呈现页脚部分。
答案 0 :(得分:1)
我相信:template
对您不起作用,因为您使用的是pdf_from_string
(来源:footer notes附近的注释掉的行。)
我们通过在app / models / pdf_builder.rb中执行此类操作来:content
:
:footer: {
content: { footer_html }
}
然后定义:
def footer_html
ERB.new(pdf_template).result(binding)
end
def pdf_template
File.read("full/path/of/your/file.html.erb")
end
我们在app / models / pdf_builder.rb中初始化我们需要动态填充的任何信息/app/views/pdf_footer.en.html.erb
答案 1 :(得分:0)
您可以直接将文件添加到render_to_string
提供的rails
方法中。
对于前:footer: {
content: render_to_string('pdf_footer.html.erb', layout: 'pdf_layout.html.erb')
}
wicked_pdf
会覆盖render_to_string
方法,因此它也支持所有默认选项。