我是 ROR 的新手。我想在选择带有扩展名的文件后捕获浏览按钮的文件名。我想将文件名存储到数据库的 File_name 列中。请帮我这样做。是否可以获得存储在 File_name 列中的文件的完整路径而不仅仅是文件名?请建议我这样做。我不想上传文件。只是我想要一个文件名来存储。
View(New)
--------------
<div class="pro-data-imports">
<%= form_for @pro_data_import do %>
<div class="field">
Browse the file to upload:<br />
<%= file_field_tag :File_name %>
</div>
<div class="actions">
<%= submit_tag 'Import File' %>
</div>
<% end %>
</div>
Controller
----------
class Pro::DataImportsController < ApplicationController
before_filter :authenticate_user!
layout "layouts/enr/energy_master"
def index
@pro_data_imports = Pro::DataImport.all
end
def new
@pro_data_import = Pro::DataImport.new
@pro_data_import.updated_by = current_user
end
def create
@pro_data_import = Pro::DataImport.new(params[:pro_data_import])
@pro_data_import.updated_by = current_user
end
end
Model
-------
I have File_name, File_validate, :updated_by Columns