2

如何下载远程图像(http 协议,url 在 image_remote_url 属性中)并通过 Paperclip 将其保存为 S3 的附件?

class Product < ActiveRecord::Base
  require 'open-uri'
  attr_accessor :image_remote_url
  has_attached_file :photo,
    :storage => :s3,
    :s3_credentials => "#{RAILS_ROOT}/config/s3.yml",
    :path => ":class/:id/:style.:extension",
    :bucket => "my_bucket",
    :styles => {
      :icon => "32x32#",
  }

  def fetch_image
    # how should this method look ?
  end

end

方法“fetch_image”应该如何看待?

4

2 回答 2

6

这是一个指向页面的链接,该页面准确地解释了您的需求。

http://trevorturk.wordpress.com/2008/12/11/easy-upload-via-url-with-paperclip/

我已经在我自己的网站上成功实现了它。

于 2010-02-11T13:45:56.847 回答
2

我不确定这对你是否仍然有用,但在几个小时前的回形针拉取请求中,我设法让这变得超级简单。

def set_photo
  self.photo = URI.parse(self.image_remote_url)
end

现在应该在回形针(版本> 3.1.3)上完成这项工作(不是3.1.3,而是之后的任何版本)。

于 2012-07-20T18:01:22.920 回答