3

在本地环境 pdf 中成功生成了页眉页脚。但是在托管 linux 服务器环境中生成的 pdf 没有页眉和页脚。下面是我的 wkhtmltopdf (WickedPdf) 配置

WickedPdf.config = {
    #:wkhtmltopdf => "#{RAILS_ROOT}/pdfbin/wkhtmltopdf-amd64",
    :exe_path => "/home/software/.gems/bin/wkhtmltopdf",
    :layout => "layouts/pdf.html.erb",
    :margin => {    :top=> 40,
                    :bottom => 20,
                    :left=> 30,
                    :right => 30},
    :header => {:html => { :template=> 'layouts/pdf_header.html.erb'}},
    :footer => {:html => { :template=> 'layouts/pdf_footer.html.erb'}}
    #:exe_path => '/usr/bin/wkhtmltopdf'
}

更多信息:

这是我的目录结构,我在 linux rails 托管 app\views\layouts 上,在布局内我有 pdf.html.erb 、 pdf_footer.html.erb 、 pdf_header.html.erb 上面的东西在我的本地 Windows 开发环境中完美运行,但是在生产中生成没有页眉和页脚的pdf。所以请大家帮我制作带有页眉和页脚的pdf

应用程序/视图/布局/pdf.html.erb

<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html dir="<%= (rtl?) ? 'rtl' : 'ltr' %>">
  <head>
    <% @direction = (rtl?) ? 'rtl/' : '' %>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 
    <%= stylesheet_link_tag([@direction+'application', @direction+'_styles/ui.all'])%>
    <%= stylesheet_link_tag(*get_stylesheets) %>
    <%= stylesheet_link_tag  @direction+"_layouts/pdf" %>
    <link rel="stylesheet" type="text/css" href="<%="#{RAILS_ROOT}/public/stylesheets/#{@direction}_layouts/pdf.css" %>" media="all" />
    <link rel="stylesheet" type="text/css" href="<%="#{RAILS_ROOT}/public/stylesheets/#{get_stylesheets}.css"%>" media="all" />
    <link rel="stylesheet" type="text/css" href="<%= "#{RAILS_ROOT}/public/stylesheets/#{@direction}_styles/ui.all.css"%>" media="all" />


  </head>
  <body>

    <%= yield %>

  </body>
</html>

应用程序/视图/布局/pdf_header.html.erb

<div id="pdf-header">
      <div class="logo">
        <% if FileTest.exists?("#{RAILS_ROOT}/public/uploads/image/institute_logo.jpg") %>
            <%= image_tag  "#{request.protocol}#{request.host_with_port}/uploads/image/institute_logo.jpg" ,:width => "90",  :height=>"85" %>
          <% else %>

          <div class="fed_logo">
            <%= image_tag  "#{request.protocol}#{request.host_with_port}/images/application/app_fedena_logo.jpg" ,:width => "90",  :height=>"85" %>
    </div>
          <% end %>
      </div>
      <div class="header-content">
        <p><%=Configuration.get_config_value('InstitutionName'); %></p>
        <p><%=Configuration.get_config_value('InstitutionAddress'); %></p>
      </div>

</div>

应用程序/视图/布局/pdf_footer.html.erb

<div id="pdf-footer">
  <%= t('signature') %>
</div>

注意*以上代码在我的 Windows 开发环境中完美运行(即使用页眉和页脚正确生成的 PDF)。但是当我在 linux 生产服务器中托管我的应用程序时,生成的 PDF 没有页眉和页脚。*


已解决页眉页脚问题,以上是工作代码。上述问题是由于我的文件在生产 Linux 环境中没有足够的可执行权限。


4

1 回答 1

1

.erb放在文件名的末尾

:header => {:html => { :template=> 'layouts/pdf_header.html.erb'}},
:footer => {:html => { :template=> 'layouts/pdf_footer.html.erb'}}
于 2012-06-23T11:32:54.150 回答