我有一个名为 Picture 的模型,上面有一个附件。我正在使用的软件:
*Rails 3
*Ruby 1.9.3
*Paperclip
*ImageMagick
我的模型是:
class Picture < ActiveRecord::Base
attr_accessible :picturefile,:picturefile_file_name,:picturefile_content_type,:picturefile_file_size,:picturefile_updated_at
has_attached_file :picturefile,
:styles => {
:thumb=> "100x100#"},
:storage => :s3,
:s3_credentials => Rails.root.join('config','s3.yml'),
:path => "/travels/:style/:id/:basename.:extension"
end
在我的控制器中,我有这个:
StringIO.open(Base64.decode64(params[:Route][:CoverPicture][:File][:EncodedContent])) do |data|
fotocov_t=Picture.create({
:picturefile=>data
})
travel.pictures = [fotocov_t] #this assigns the new picture to a travel i created before the picture
end
可以看出我正在上传一个字符串,但我要上传的是由编码字符串在
params[:Route][:CoverPicture][:File][:EncodedContent]
我尝试了多种方法,但一直保存一个文本文件。
有谁知道我如何将文件作为图像上传而不是上传文本文件?
谢谢 :)