是否可以通过使用PaperClip的url获取图像?可以使用fleximage,但是fleximage不支持Rails3,所以我已经切换到了回形针.
目前,我通过curl获取图像,将其保存在hdd上,并通过image_file的paperclip加载.
我没有通过谷歌找到真正的解决方案,所以希望你可以帮助我.
解决方法
是的,这是可能的,令人惊讶的简单.
在你的模型中:
#we use this to get the image. require 'rest-open-uri' Class Model << ActiveRecord::Base has_attached_file :picture #Get the picture from a given url. def picture_from_url(url) self.picture = open(url) end
然后你可以这样做:
#controller @model.picture_from_url(<Your URL here>)
并且因为我们与对象的其余部分保存了图像.你可以在你的意见中使用这个:
<%= image_tag @model.picture.url %>
希望这可以帮助!