ruby-on-rails – 主动管理多个文件/图像上传与回形针

我使用活动管理员,我需要上传图库很多图像.我该怎么做?
我的代码
class gallery < ActiveRecord::Base
  belongs_to :event
  has_many :images

  attr_accessible :name,:publish,:images,:image,:images_attributes
  accepts_nested_attributes_for :images,allow_destroy: true

  validates :name,presence: true

end

class Image < ActiveRecord::Base
  belongs_to :gallery

  attr_accessible :url
  has_attached_file :url,:styles => { :medium => "300x300>",:thumb => "100x100>" }
end


ActiveAdmin.register gallery do
    form html: { multipart: true }  do |f|
          f.inputs  do
            f.input :name
            f.input :images,as: :file,input_html: { multiple: true}
          end            
          f.buttons
    end  
end

我有这个错误

Image(#70319146544460) expected,got Actiondispatch::Http::UploadedFile(#70319105893880)

解决方法

尝试这个:
ActiveAdmin.register gallery do
  form multipart: true do |f|
    f.inputs do
      f.input :name

      f.has_many :images do |p|
        p.input :url
      end
    end

    f.actions
  end
end

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...