1

我试图让自己使用活动管理员为每个模型上传 5 张图片,但我似乎不知道该怎么做。到目前为止,这是我的 activeadmin 代码:

ActiveAdmin.register Piece do
  form :html => { :enctype => "multipart/form-data" } do |f|
    f.inputs "Details" do
      f.input :name
      f.input :description
      f.input :cost
      f.input :category
      f.input :photo, :as => :file, :hint => f.template.image_tag(f.object.photo.url(:medium))
    end
    f.buttons
  end

  index do
    column :id
    column :name
    column :cost
    column :category
    column :inventory_count
    column :available_count
    column :materials
    column :created_at
    default_actions
  end
end

我如何一次允许 5 个而不是 1 个?

4

1 回答 1

6

这是它的工作原理:

class Piece
  has_many :pictures
  accepts_nested_attributes_for :pictures
end

class Picture
  has_attached_file :photo
end

然后在您的活动管理表单中,您将

f.has_many :pictures do |ff|
  ff.input :photo, as: :file, :hint => ff.template.image_tag(ff.object.photo.thumb.url)
  ff.input :_destroy, as: :boolean
end 
于 2012-07-02T16:57:17.187 回答