【发布时间】:2011-12-15 04:04:00
【问题描述】:
当我尝试使用 Paperclip gem 上传图片时,出现此错误:
NoMethodError(<:http::uploadedfile:0x000000025387f0> 的未定义方法 `stringify_keys')
class MenuItem < ActiveRecord::Base
has_one :image
end
class Image < ActiveRecord::Base
belongs_to :menu_item
has_attached_file :image, :styles => {
:large => "640x480",
:medium => "300x300",
:thumb => "100x100"
}
end
【问题讨论】:
-
没什么好说的……也许是一些细节。
标签: ruby-on-rails-3 file-upload paperclip