如何使用 file_file_tag 上传文件?
Posted
技术标签:
【中文标题】如何使用 file_file_tag 上传文件?【英文标题】:How to upload a file using the file_file_tag? 【发布时间】:2019-04-03 02:52:07 【问题描述】:我想以表单形式上传文件,但不希望其字段位于模型中。 所以使用 file_filed_tag
at view:
<%= form_tag services_datainterchange_path, method: :post, remote: true do %>
<div class="row">
<div class="col-sm-3 col-md-3">
<div class="form-group">
<%= label_tag :file %>
<%= file_field_tag :file, required: true, class: "form-control", id: "upload_file" %>
</div>
</div>
<div class="col-sm-2 col-md-2">
<div class="form-group">
<%= label_tag :name %>
<%= text_field_tag :name, nil, required: true, class: "form-control", id: "upload_file_name" %>
</div>
</div>
<div class="col-sm-2 col-md-2">
<div class="form-group">
<%= label_tag :source_type %>
<%= select_tag :source_type, options_for_select(ApplicationRecord::SOURCE_TYPE), class: "form-control" %>
</div>
</div>
<div class="col-sm-2 col-md-2">
<div class="form-group">
<%= label_tag :final_type %>
<%= select_tag :final_type, options_for_select(ApplicationRecord::FINAL_TYPE), class: "form-control" %>
</div>
</div>
<div class="col-sm-2 col-md-2">
<div class="form-group">
<%= submit_tag "Submit", class: "btn btn-primary" %>
</div>
</div>
</div>
<% end %>
在控制器处:
directory = "public/job_files"
Find.find( directory ) do |fpath|
if FileTest.file?( fpath )
fpath.clone(params[:file])
end
end
但文件不上传参数确实会提交表单。 谢谢
【问题讨论】:
【参考方案1】:在控制器中:
name = params['file'].original_filename
uploaded_io = params['file']
File.open(Rails.root.join('public', 'job_files', uploaded_io.original_filename), 'wb') do |file|
file.write(uploaded_io.read)
end
【讨论】:
以上是关于如何使用 file_file_tag 上传文件?的主要内容,如果未能解决你的问题,请参考以下文章