DBに値を保存したいのですが、nilというエラーが出てしまいます。
やりたいことはdbにform_forの値を保存したいのですが、うまくいきません。原因がわかりません。
データベースをみると、current_user.idだけはしっかり記録されているのですが、それ以外の:timeと:NOPはnilになっています。
よろしくお願い足します。
NoMethodError in TimetablesController#create undefined method `empty?' for nil:NilClass Extracted source (around line #14): 12 13 14 15 16 17 if @timetable.save flash[:success] = "ご予約ありがとうございます" render root_path else flash[:success] = "申し訳ございません。予約を受け付けられませんでした" render root_path Rails.root: /home/ec2-user/environment/portfolio Application Trace | Framework Trace | Full Trace app/controllers/timetables_controller.rb:14:in `create' Request Parameters: {"utf8"=>"✓", "authenticity_token"=>"yhB9ahSudWail3lIxP64OOmoTo/6PDNYcjyA03VF7yPDsEcMS0jYG+StLqeHKQ8DmmadBaXtsuOAXtvf4k4ZRg==", "timetable"=>{"time"=>"9:30", "NOP"=>"2"}, "commit"=>"Create Timetable"} Toggle session dump Toggle env dump Response Headers: None
migration
1class CreateTimetables < ActiveRecord::Migration[5.1] 2 def change 3 create_table :timetables do |t| 4 t.integer :user_id 5 t.integer :NOP 6 t.string :time 7 8 t.timestamps 9 end 10 end 11end 12
view
1 2<%= form_for(@timetable) do |f| %> 3 4 <%= f.select :time, [["9:00", "9:00"], ["9:30", "9:30"], ["10:00", "10:00"] ], :prompt => "時間を選択してください" %> 5 <%= f.select :NOP, [["1", 1], ["2", 2], ["3", 3] ], :prompt => "枠数を選択してください" %> 6 7 <%= f.submit %> 8<% end %>
controller
1class TimetablesController < ApplicationController 2 def timetable_index 3 @timetables = Timetable.all 4 end 5 6 def new 7 @timetable = Timetable.new 8 end 9 10 def create 11 @timetable = Timetable.new(user_id: current_user.id, NOP: timetable_params[:NOP], time: timetable_params[:time]) 12 if @timetable.save 13 flash[:success] = "ご予約ありがとうございます" 14 render root_path 15 else 16 flash[:success] = "申し訳ございません。予約を受け付けられませんでした" 17 render root_path 18 end 19 end 20 21 def destroy 22 end 23 24 private 25 def timetable_params 26 params.permit(:user_id, :NOP, :time) 27 end 28 29end 30 31
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/14 16:18
2020/02/15 10:21
2020/02/15 10:39
2020/02/15 11:32
2020/02/15 12:00
2020/02/15 12:22
2020/02/15 12:53
2020/02/15 13:49
2020/02/15 15:15