嗨我使用wicked_pdf生成图像后我保存图像生成pdf并使用此标签显示图像这样
<%= wicked_pdf_image_tag(@image.snap.url(:original)) unless @image.blank? %>
它给了我这个未知的错误
ActionView::Template::Error (undefined method `pathname' for nil:NilClass):
而puts @ image.inspect给了我正确的路径
"/system/snaps/7/original/flake.jpg"
任何人都可以帮忙
谢谢….
解决方法
我也遇到了同样的问题.
在app / helpers / application_helper.rb文件中写下以下代码行:
在app / helpers / application_helper.rb文件中写下以下代码行:
module ApplicationHelper def wicked_pdf_image_tag_for_public(img,options={}) if img[0] == "/" new_image = img.slice(1..-1) image_tag "file://#{Rails.root.join('public',new_image)}",options else image_tag "file://#{Rails.root.join('public','images',img)}",options end end end
<%= wicked_pdf_image_tag_for_public @logo.url(:small) %>
@ logo.url通过paperclip存储公共图像路径.
我希望这会有所帮助.