私はImportCSVRailscastをフォローしていますが、それは簡単です。
私は自分に追加require 'csv'
しましたconfig/application.rb
私の中で私は次のような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
考え?