目前,我正在使用 refile 让我的用户在他们的个人资料中上传照片。我正在尝试通过活动管理员将照片添加到他们的个人资料中。出于某种原因,我无法让它工作。有没有人有工作代码的例子?这就是我所在的地方。
这就是我在活动管理员中的 user.rb 文件中的内容
f.inputs "Images Files" do
f.has_many :images do |item|
# item.input :image, :as => :file, :hint => f.attachment_field :images_files, multiple: true, presigned: true, direct: true
item.file_field :images_files, multiple: true, presigned: true, direct: true
end
end
permit_params images: [:created_at, :updated_at, :ambassador_id, :file_id]