wicked_pdf gem在Windows上抛出运行时错误

时间:2015-04-14 18:54:27

标签: wkhtmltopdf wicked-pdf

RuntimeError at /reports/1/print Bad wkhtmltopdf's path: bundler: command not found: which Install missing gem executables with `bundle install`

在控制器内调用render pdf: "pdf_name"时发生错误。

我正在使用的宝石 - rails 4.2wkhtmltopdf-binary 0.9.9.3wicked_pdf 0.11.0

我不明白错误的含义以及我如何解决它。提前谢谢。

1 个答案:

答案 0 :(得分:3)

直接在C驱动器中下载并安装wkhtmltopfd(如果其内部程序文件将其移出),请使用此代码在intializers目录中创建一个wicked_pdf.rb:
WickedPdf.config = { #:wkhtmltopdf => '/usr/local/bin/wkhtmltopdf', #:layout => "pdf.html", :exe_path => 'C:\wkhtmltopdf\bin\wkhtmltopdf.exe' }
重新启动rails服务器并且必须修复它:)