pdf不是渲染标题

        render :pdf => "file_name",
                     :layout      => 'pdf.html.erb',
                     :template    => 'transactions/show.pdf.erb',
                      :wkhtmltopdf => WICKED_PDF_BIN,
                      :show_as_html => true,
                    :layout => 'pdf.html.erb',
                    :header => {:html => { :template => 'shared/header.pdf.erb'}}

PDF生成很好,不幸的是我没有看到标题。 我可以将标题粘贴在主布局中,它也可以正常工作。 在我看来,上面的标题行没有被处理。 文件名'header.pdf.erb'似乎并不重要。 我可以将它指向一个不存在的文件,它不会引发错误。

这是Mac OS,Rails 3.2.1,ruby 1.9


您可能只想将模板呈现为字符串并将其分配给标题的内容。 尝试一下:

header: {
  content: render_to_string(template: 'header.pdf.haml')
}

这对我来说很有用。

链接地址: http://www.djcxy.com/p/10971.html

上一篇: pdf is not rendering header

下一篇: Method overloading decorator