在检查了Rails Gem存储库中的类似问题以及堆栈溢出之后,我找不到解决问题的答案。
我正在尝试在Rails控制器中使用wicked_pdf渲染pdf,但是无论执行什么操作或针对以下类似问题的推荐解决方案,标题都没有显示。
首先,这是开发控制台的输出:
***************WICKED***************
Rendering biddings/show.pdf.html.haml within layouts/pdf
Rendered biddings/show.pdf.html.haml within layouts/pdf (0.7ms)
Rendering biddings/header_pdf.html.haml within layouts/pdf_header
Rendered biddings/header_pdf.html.haml within layouts/pdf_header (1.9ms)
"***************[\"/home/tommy/.rvm/gems/ruby-
2.5.1@igalbids/bin/wkhtmltopdf\", \"-q\", \"--encoding\", \"UTF-8\",
\"--javascript-delay\", \"500\",
\"--disable-internal-links\", \"--disable-external-links\",
\"--orientation\", \"Portrait\", \"--margin-top\",
\"50\", \"--margin-bottom\", \"25\", \"--header-html\",
\"file:////tmp/wicked_header_pdf20180801-27285-b8y5sg.html\",
\"--footer-right\", \"Página [page] de [topage]\",
\"file:////tmp/wicked_pdf20180801-27285-1jfgdd7.html\",
\"/tmp/wicked_pdf_generated_file20180801-27285-1bkrvhx.pdf\"]***************"
Rendering text template
Rendered text template (0.1ms)
Sent data Licitación_2524.pdf (0.6ms)
Completed 200 OK in 2334ms (Views: 0.5ms | ActiveRecord: 64.4ms)
如您所见,标题布局及其内容都正在呈现和处理,但是它们没有生成最终的输出PDF,我也不知道为什么!看:
所以,这是我的控制器代码:
class Api::V1::Biddings::PdfBiddingsController < PdfController
# JWT Authentication enforced
before_action :authenticate_user!
# GET /biddings/:id/pdf
def show
@bidding = scoped_collection.find(params[:id])
authorize [:biddings, :pdf, @bidding]
respond_to do |format|
format.pdf do
render(
pdf: "#{Bidding.model_name.human}_#{@bidding.code}",
disposition: "inline",
orientation: "Portrait",
template: 'biddings/show.pdf.html.haml',
header: {
html: {
template: "biddings/header_pdf.html.haml",
handlers: [:haml],
layout: "pdf_header",
formats: [:haml, :html]
}
},
footer: {
html: {
handlers: [:haml],
layout: "pdf",
formats: [:haml, :html],
encoding: 'UTF-8'
},
right: "#{I18n.t('pdf.page')} [page] #{I18n.t('pdf.of')} [topage]"
},
margin: { :top => 50, :bottom => 25},
handlers: [:haml],
layout: "pdf",
javascript_delay: 500,
encoding: 'UTF-8',
show_as_html: false,
disable_internal_links: true,
disable_external_links: true) and return
end
end
end
protected
def self.model
Bidding
end
private
def scoped_collection
policy_scope([:biddings, :pdf, Bidding]).includes(:bidding_type, :client, :payment_condition, :price_list, :real_payment_condition, :sales_man, :user)
end
def records_per_page
params[:per_page] || 10
end
end
没什么好看的,在那里您可以看到所有的配置选项,相当标准。不用说,带有页码的页脚运行正常(屏幕截图显示时间太长,但请相信我)。关于标题不能说同样的话。
这是PDF标头布局文件:
pdf_header.html.haml :
!!! 5
%html
%head
%meta{:content => "text/html; charset=utf-8", "http-equiv" => "content-type"}/
= wicked_pdf_stylesheet_link_tag "bidding_pdf", media: :all
= csrf_meta_tags
%body.pdf
= yield
,这里是标题“ contents”本身的内容,本身:
header_pdf.html.haml :
Test text
纯文本。我有一个Linux 16.04 x64 OS,wicked_pdf(1.1.0),wkhtmltopdf-binary(0.12.4)。我该如何调试呢?
答案 0 :(得分:3)
对于任何碰到这种情况的人,由于OP的答案不太准确,所以对我来说,要做的就是在页眉/页脚中包含DOCTYPE HTML标签。从不可见的标题(带有可以使用搜索工具找到的文本)转到完全呈现。
答案 1 :(得分:0)
对于到达这里的其他人……这是CSS问题。标题在那里,但是“不可见”,无论我在渲染选项上设置了什么边距,这都是CSS问题。从头启动CSS之后,标题就会出现!我无法使用标志show_as_html: true
对其进行调试,因为页眉和页脚不是在该模式下呈现,而是仅在正文中呈现。
如果任何人都读到了这种情况,并且碰巧处于相同的情况,请使用PDF文档中的搜索工具查找标题中您知道的单词。如果它找到了东西但它是不可见的,则说明您有CSS问题。
另外,不要忘记,以检查您是否在标题的html中包含<!DOCTYPE html>
。谢谢@joaolell。
要检查的另一件事是,您是否拥有支持页眉和页脚的wkhtmltopdf库的qt修补版本(0.12.4及更高版本)。以前的版本不会
答案 2 :(得分:0)
将wkhtmltopdf二进制文件至少升级到版本“ 0.12.4(带有修补的qt)”。我花了半天的时间进行故障排除,因为我的0.12.1版本不支持页眉和页脚。