gpt4 book ai didi

ruby-on-rails - 具有中间模型的 ActiveStorage 多次上传

转载 作者:行者123 更新时间:2023-12-05 04:46:28 27 4
gpt4 key购买 nike

目标

我想上传多个文件。因此,一个Intervention 可以有多个Uploads,每个Upload 都有一个附加文件。这样一来,每个Upload 都可以附加一个具有不同状态、名称、可见性等的文件,而不是有一个 has_many_attachedUpload p>


我做了什么

我有一个可以有很多上传的干预模型:

class Intervention < ApplicationRecord
has_many :uploads, dependent: :destroy
accepts_nested_attributes_for :uploads, :allow_destroy => true
end

每次上传都有一个使用 ActiveStorage 的附件:

class Upload < ApplicationRecord
belongs_to :intervention
has_one_attached :file
end

在我的 interventions_controller 中我这样做:

def new
@intervention = Intervention.new
@intervention.uploads.build
end

def create
@intervention = Intervention.new(intervention_params)
# + default scaffolded controller [...]
end

def intervention_params
params.require(:intervention).permit(:user_id, :comment, uploads_attributes: [:status, :file])
end

在我的表格中我有:

<%= form.fields_for :uploads, Upload.new do |uploads_attributes|%>
<%= uploads_attributes.label :file, "File:" %>
<%= uploads_attributes.file_field :file %>

<%= uploads_attributes.hidden_field :status, value: "raw" %>
<% end %>

问题

当我只想上传一个文件时,此解决方案有效。但是,如果我想上传两个文件,我就不知道了。我可以将 multiple: true 添加到 file_field 但如何创建多个上传,每个上传一个文件?

我是否应该先将上传的文件保存到一个临时变量中,从 intervention_params 中提取它们,然后创建没有任何上传的干预,然后为每个保存的上传文件,为新的创建一个新的上传创造了干预?

最佳答案

我已经完成了我提出的建议。我不知道是否有更优雅的方法来做到这一点,但无论如何,这是有效的。

在我的表单中,我只是添加了一个简单的 files 字段,它可以包含多个文件

<div class="field">
<%= form.label :files %>
<%= form.file_field :files, multiple: true %>
</div>

我已将此添加到允许的参数中:params.require(:intervention).permit(:user_id, :comment, files:[]])

然后我通过忽略此 files 参数来创建我的Intervention,稍后我使用它为每个提交的文件创建一个新的Upload 记录。

# First create the intervention without the files attached
@intervention = Intervention.new(intervention_params.except(:files))

if @intervention.save
# Then for each files attached, create a separate Upload
intervention_params[:files].each do |f|
upload = @intervention.uploads.new()
upload.file.attach(f)
upload.save
end
end

关于ruby-on-rails - 具有中间模型的 ActiveStorage 多次上传,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68789823/

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