gpt4 book ai didi

ruby-on-rails - Rails wikedPDF 错误 : PDF could not be generated

转载 作者:行者123 更新时间:2023-12-01 21:34:46 28 4
gpt4 key购买 nike

我正在尝试在 Rails 6 上使用 WickedPdf,但我遇到了这个错误

RuntimeError (Failed to execute:
["/home/guilherme/.rbenv/versions/2.7.1/bin/wkhtmltopdf", "file:////tmp/wicked_pdf20200531-14069-p9pvre.html", "/tmp/wicked_pdf_generated_file20200531-14069-8mk29k.pdf"]
Error: PDF could not be generated!
Command Error: /home/guilherme/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/wkhtmltopdf-binary-0.12.5.4/bin/wkhtmltopdf:45:in `<top (required)>': Invalid platform, must be running on Ubuntu 14.04/16.04/18.04 CentOS 6/7/8, Debian 8/9/10, or intel-based macOS (missing binary: /home/guilherme/.rbenv/versions/2.7.1/lib/ruby/gems/2.7.0/gems/wkhtmltopdf-binary-0.12.5.4/bin/wkhtmltopdf_ubuntu_20.04_amd64). (RuntimeError)
from /home/guilherme/.rbenv/versions/2.7.1/bin/wkhtmltopdf:23:in `load'
from /home/guilherme/.rbenv/versions/2.7.1/bin/wkhtmltopdf:23:in `<main>'
):

在我的 gemfile 中添加

gem 'wicked_pdf'
gem 'wkhtmltopdf-binary'

我渲染pdf的 Controller 方法是

  def gera_contrato
cliente = Cliente.find_by_id(params[:cliente])
@cnpj = cliente.local.cnpj
@razao = cliente.local.razao
@fantasia = cliente.local.fantasia
@nome = cliente.nome
@cpf = cliente.cpf
@rg = cliente.rg
render pdf: 'contrato', handlers: [:erb], formats: [:html]
end

我的html转pdf文件是

<!doctype html>
<html>
<head>
<meta charset='utf-8' />
<%= wicked_pdf_stylesheet_link_tag "pdf" -%>
</head>
<body>
<h1><%= @cnpj %></h1>
<h1><%= @razao %></h1>
<h1><%= @fantasia %></h1>
<h1><%= @nome %></h1>
<h1><%= @cpf %></h1>
<h1><%= @rg %></h1>
</body>
</html>

我已经更改了路径,更改了 gem 版本,并且做了很多事情但没有任何效果,我应该怎么做才能解决这个错误?

最佳答案

嗯,这是你的问题。错误消息指出:无效平台,必须在 Ubuntu 14.04/16.04/18.04 上运行。您必须从 https://wkhtmltopdf.org/downloads.html 安装适用于 Ubuntu 20.04 的版本并像这样手动将其指向此版本

/config/initializers/wicked_pdf.rb

WickedPdf.config = {
exe_path: '/path/to/correct/version'
}

关于ruby-on-rails - Rails wikedPDF 错误 : PDF could not be generated,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62118497/

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