0
我不會上傳多個文件中rails_admin無法上傳多個文件中rails_admin
我的模型配置
class EducationMaster < ActiveRecord::Base
attr_accessible :address, :city, :country, :name, :state, :zip,:photos
has_many :photos, :dependent => :destroy
end
class Photo < ActiveRecord::Base
belongs_to :education_master
attr_accessible :education_master_id, :image
mount_uploader :image, ImageUploader
end
請幫我使用Rails上傳多個文件管理 我的rails 3.2.13版本紅寶石1.9.3