我的CSS是邪恶的pdf问题 一切都在本地工作,但在生产中找不到pdf.css
ActionView::Template::Error (The asset "components/pdf.css" is not present in the asset pipeline.):
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<%= wicked_pdf_stylesheet_link_tag 'components/pdf.css' %>
</head>
<body>
<%= yield %>
我的pdf.html.erb
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<%= wicked_pdf_stylesheet_link_tag 'components/pdf' %>
</head>
<body>
<%= yield %>
</body>
</html>
my components / pdf.css
.document-pdf {
background-image: asset-data-url("fond.png");
background-size: 23cm 13cm;
background-color: white;
background-repeat: no-repeat;
background-position: 50% 70%;
font-family: "Helvetica Neue", Helvetica;
}
答案 0 :(得分:3)
您是否已将pdf.css
添加到initializers/assets.rb
中的预编译资产?
Rails.application.config.assets.precompile += ['pdf.css']
答案 1 :(得分:0)
每个问题都可能因不同的原因而发生。所以如果有人可能有同样的情况,我想分享我的。
我们在 heroku 控制台上运行 gem update sass-rails
gem update wicked_pdf
和 gem update wkhtmltopdf-binary
。
最好