我只是将我的应用程序升级到rails 5,而gem wicked pdf
不再显示css。我没有改变任何东西,所以可能有一些轨道5的规格。
如果有人发现这个问题,请随时提供帮助:)
这是我的代码:
object_controller
def download
@object = object.find(params[:object])
respond_to do |format|
format.html
format.pdf do
render pdf: "ptf_#{@object.id}",
layout: 'layouts/pdf_layout',
template: 'objects/download.html.erb',
title: "download object",
show_as_html: false,
header: { content: render_to_string(template: 'objects/header_pdf.pdf.erb'), spacing: 7 },
footer: { content: render_to_string(template: 'objects/footer_pdf.pdf.erb'), spacing: 10 },
margin: { top: 55, bottom: 35 }
end
end
pdf_layout.html.erb
<% content_for :title do %><%= @title %><% end %>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<%= wicked_pdf_stylesheet_link_tag 'pdf' %>
<br>
<%= yield %>
我尝试了帮助者wicked_pdf_stylesheet_link_tag
和stylesheet_link_tag wicked_pdf_asset_base64
header_pdf.html.erb
<div class="center">
<%= image_tag wicked_pdf_asset_base64("logo.png"), class: 'header' %>
<div class="first-class"><%= @object.title %></div>
</div>
这是我的代码的一些摘录,只是为了向您展示我如何组织文件生成。我还有一个文件pdf.scss
答案 0 :(得分:3)
我希望您已经找到了解决方案但是,对于其他所有人,我遇到了这个问题并通过将布局的扩展名从.html.erb
更改为.pdf.erb
来解决了这个问题。我的布局现在称为report.pdf.erb
。