品牌有很多形象是我的联想。图片使用回形针
在 Rails Admin 中,我想在添加品牌时添加图片
class Brand < ActiveRecord:Base
has_many :images, as=> :imageable
end
class Image < ActiveRecord:Base
attr_accessor :image_thumb
attr_accessible :image, :imageable_id, :imageable_type, :image_thumb
has_attached_file :image, :styles => { :medium => "300x300>", :thumb => "100x100>" }
belongs_to :imageable, :polymorphic => true
end
但这就是我得到的
我怎样才能实现我的目标?