ruby-on-rails – 直接通过url直接提取图像

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 直接通过url直接提取图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以通过使用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 %>

希望这可以帮助!

原文链接:https://www.f2er.com/ruby/265335.html

猜你在找的Ruby相关文章