1

我已经做好了

gem install pdfkit
gem install wkhtmltopdf 

在 application.rb 添加

config.middleware.use "PDFKit::Middleware", :print_media_type => true

当我转到带有 .pdf 扩展名的 pdf 链接时

它显示错误如下

No wkhtmltopdf executable found at bundler: command not found: which
Install missing gem executables with `bundle install`
>> Please install wkhtmltopdf -https://github.com/jdpace/PDFKit/wiki/Installing WKHTMLTOPD
4

1 回答 1

0

一种猜测是您使用的是 Windows,但该库需要该which命令,该命令在 OS X 和 Linux 等系统上可用,但在 Windows 上不可用。

如果您使用的是 Windows,那么在Cygwin中运行 Rails 可能会更成功。

于 2012-08-25T11:56:32.153 回答