邪恶的pdf在生产中找不到我的资产

时间:2017-12-06 13:32:10

标签: css ruby-on-rails ruby wicked-pdf

我的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;
}

2 个答案:

答案 0 :(得分:3)

您是否已将pdf.css添加到initializers/assets.rb中的预编译资产?

Rails.application.config.assets.precompile += ['pdf.css']

答案 1 :(得分:0)

每个问题都可能因不同的原因而发生。所以如果有人可能有同样的情况,我想分享我的。

  • Ruby 在某个时候更新(更新后发生此错误)。 我们在 heroku 控制台上收到“pdf.css not find error”。

我们在 heroku 控制台上运行 gem update sass-rails gem update wicked_pdfgem update wkhtmltopdf-binary

最好