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

标签 ruby-on-rails forms file-upload rails-activestorage

目标

我想上传多个文件。因此,一个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/

相关文章:

javascript - 解析 XML 以使用 Javascript

javascript - CRM 2011 - 单击关联 View 或子网格中自己的记录链接时出现奇怪的行为形式

ruby-on-rails - rails : Multi-submit buttons in one Form

jquery - 使用 jQuery.ajax 发送 multipart/formdata

file-upload - 如何使用 JSF/Primefaces 上传文件?

ruby-on-rails - 如何在设计中获取密码重置网址?

ruby-on-rails - Restful 设计的建议?

ruby-on-rails - Rails 4.0 存储临时 CSV 文件

javascript - 通过表单提交重定向造成延迟

php - 如何使用 PHP 和 CURL 使用多维 POSTFIELDS 上传文件(多部分/表单数据)?