HTMLをPDFとしてレンダリングするためにMiddlwareでPDFKitを使用していますが、localhost:3000/booklets/1.pdfにアクセスしようとするとTypeErrorが発生し続けます
can't convert Hash into String
エラーは BookletsController#show にあると表示されます。これは私の booklets_controller.rb からの抜粋です
def show
@booklet = Booklet.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.pdf {
html = render_to_string(:action => "show.html.erb", :formats => [:html])
kit = PDFKit.new(html)
send_data(kit.to_pdf, :filename => "booklet.pdf", :type => 'application/pdf')
return
}
end
end
環境.rb
# Initialize the rails application
Ziin::Application.initialize!
Mime::Type.register "application/pdf", :pdf
application.rbからの抜粋
require 'pdfkit'
config.middleware.use "PDFKit::Middleware"
PDFKit.configure do |config|
config.wkhtmltopdf = { :exe_path => '/usr/local/bin/wkhtmltopdf' }
end