3

私は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

考え?

4

1 に答える 1

2

コメントから:あなたはおそらくファイルを選択せず​​にフォームを送信しています:)

于 2013-02-01T09:55:35.540 に答える