Ruby on rails - 尝试 CSV 导入时 nil:NilClass 的未定义方法"路径"



我正在遵循导入CSV轨道广播,它很简单。

我在config/application.rb中添加了require 'csv'

在我的BuildingsController中,我创建了一个新的import操作,如下所示:

def import
  Building.import(params[:file])
  redirect_to root_url, notice: "Buildings imported."
end

在我看来,我有这个:

<h2>Import Buildings</h2>
<%= form_tag import_buildings_path, multipart: true do %>
  <%= file_field_tag :file %>
  <%= submit_tag "Import" %>
<% end %>

这是我的Building.rb模型中:

def self.import(file)
  CSV.foreach(file.path, headers: true) do |row|
    building = find_by_name(row["name"]) || new
    building.attributes = row.to_hash.slice(*accessible_attributes)
    building.save!
  end
end

在我的routes.rb中,我有这个:

  resources :buildings do
    collection { post :import }
  end

当我单击视图上的"导入"按钮时,出现此错误:

NoMethodError at /buildings/import
Message undefined method `path' for nil:NilClass
File    /myapp/app/models/building.rb
Line    23

思潮?

从评论中: 您很可能在没有选择文件的情况下提交表单:)

相关内容

  • 没有找到相关文章

最新更新