list.rb
アプリにとの 2 つのモデルがあります。contacts.rb
これらにはhas_and_belongs_to_many
関係があります。私の中に次のメソッドがありますcontacts_controller.rb
:
def import
Contact.import(params[:file])
redirect_to contacts_path, notice: "Contacts were imported."
end
List
アクションで を作成した後、彼のメソッドを呼び出していlist#create
ます。set/input
ファイルを介してレコードが作成される上記のlist_id
インポート方法にどのようにアクセスできcsv
ますか?
ありがとうございました!