gpt4 book ai didi

ruby-on-rails-5 - 如何使用事件存储将图像上传字段添加到 active_admin

转载 作者:行者123 更新时间:2023-12-04 15:53:47 25 4
gpt4 key购买 nike

我有一个事件模型,它有很多图像字段

class Event < ApplicationRecord
has_one_attached :poster
has_one_attached :ticket_image
has_many_attached :images
end

如何使用上述字段在事件的管理事件仪表板上创建和允许图像?我使用 active_storage 作为我的图片 uploader

最佳答案

尝试这样的事情:

ActiveAdmin.register Event do
...
form do |f|
input :poster, as: :file
input :ticket_image, as: :file
input :images, as: :file, input_html: { multiple: true }
end

permit_params :poster, :ticket_image, images: []
end

关于ruby-on-rails-5 - 如何使用事件存储将图像上传字段添加到 active_admin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52759317/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com