gpt4 book ai didi

ruby-on-rails - CSS 不适用于 wicked_pdf

转载 作者:行者123 更新时间:2023-12-04 05:34:07 25 4
gpt4 key购买 nike

我正在使用 wicked_pdf 并且遇到了问题。 css 不起作用。如何正确使用?

我的代码是这样的:

application.html.erb

<!DOCTYPE html>
<html>
<head>
<title>WickedPdfExample</title>
<%= wicked_pdf_stylesheet_link_tag "bootstrap.min.css" -%>
<%= wicked_pdf_stylesheet_link_tag "application.css" -%>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
</head>
<body>
<div class="container">
<%= yield %>
</div>
</body>
</html>

布局/pdf.html.erb
<!DOCTYPE html>
<html>
<head>
<title>PDF</title>
<%= wicked_pdf_stylesheet_link_tag "bootstrap" -%>
</head>
<body>

<div class='container'>
<%= yield %>
</div>

</body>
</html>

customers_controller.erb
  def index
@customers = Customer.all
respond_to do |format|
format.html
format.pdf do
render :pdf => 'file_name',
:layout => 'layouts/pdf.html.erb'
:template => 'customers/index.pdf.erb',
:show_as_html => params[:debug].present?
end
end
end

index.pdf.erb
<h1>Listing Customers</h1>

<table class="table table-condensed table-bordered">
<thead>
<tr>
<th>Name</th>
<th>Cpf</th>
<th>Occupation</th>
</tr>
</thead>

<tbody>
<% @customers.each do |customer| %>
<tr>
<td><%= customer.name %></td>
<td><%= customer.cpf %></td>
<td><%= customer.occupation %></td>
</tr>
<% end %>
</tbody>
</table>

有时,会收到此错误:

未定义的方法`start_with?'对于零:NilClass

我做错了什么?

但是,我的 bootstrap 不收费。我都试过了!!!

最佳答案

我的 CSS 是这样工作的:

<%= stylesheet_link_tag "http://#{request.host_with_port}/#{asset_path("application.css")}", rel: "stylesheet", media: "all" %>

关于ruby-on-rails - CSS 不适用于 wicked_pdf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35706595/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com