エラーの内容
このようなエラーの内が出てしまいます。
ソースコード
slim
1 .button.text-right 2 = link_to t('common.btn.export'), hr_growth_sheet_master_growth_sheet_item_masters_path(@growth_sheet_item_masters, format: :csv), class: "btn btn-block btn-default d-inline mr-2" 3 .card-header 4 .csv-import.text-right 5 = form_tag import_hr_growth_sheet_master_growth_sheet_item_masters_path, multipart: true do 6 = file_field_tag :file 7 = submit_tag t('common.btn.import'), class: "btn btn-default d-inline"
controller
1 def import 2 if params[:file].blank? 3 redirect_to hr_growth_sheet_master_growth_sheet_item_masters_path, danger: t('common.message.csv_file_nothing') 4 elsif File.extname(params[:file].original_filename) != '.csv' 5 redirect_to hr_growth_sheet_master_growth_sheet_item_masters_path, danger: t('common.message.csv_file_only') 6 else 7 num = GrowthSheetItemMaster.import(params[:file], current_corporation.id) 8 redirect_to hr_growth_sheet_master_growth_sheet_item_masters_path, success: t('common.message.csv_import_success', item: num) 9 end 10 end
やってみたこと
slimの記述をimport_hr_growth_sheet_master_growth_sheet_item_masters_path(@growth_sheet_item_masters)
このようにしてみましたが、意味がありませんでした。
どのような記述が必要か詳しい方教えてください。
宜しくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。