前提・実現したいこと
new.html.erbで保存に失敗すると、render :newで戻ることはできるが、
再度、保存を実行すると上記のエラーが発生する
何回押しても、new.html.erbが表示されるようにしたい。
発生している問題・エラーメッセージ
ActionController::ParameterMissing in RecordsController#create param is missing or the value is empty: record
該当のソースコード
ruby
1class RecordsController < ApplicationController 2 before_action :authenticate_user! 3 before_action :configure_permitted_parameters, if: :devise_controller? 4 before_action :correct_user, only: [:edit, :update] 5 before_action :set_record, only: [:show, :edit, :update, :destroy, :edit] 6 7 def index 8 @record = Record.new 9 @user = current_user 10 @records = Record.includes(:user) 11 end 12 13 def new 14 @record = Record.new 15 end 16 17 def create 18 @records = Record.new(record_params) 19 if @records.save 20 redirect_to root_path 21 else 22 render :new 23 end 24 end 25 26 def show 27 end 28 29 def edit 30 end 31 32 def destroy 33 if @record.user_id == current_user.id 34 @record.destroy 35 redirect_to edit_item_path 36 else 37 render :index 38 end 39 end 40 41 def update 42 if @record.update(record_params) 43 redirect_to record_path 44 else 45 render :edit 46 end 47 end 48 49 50 private 51 52 def correct_user 53 @record = current_user.record.find_by(id: params[:id]) 54 redirect_to root_url unless @record 55 end 56 57 def set_record 58 @record = Record.find(params[:id]) 59 end 60 61 def configure_permitted_parameters 62 devise_parameter_sanitizer.permit(:sign_up, keys: [:nickname]) 63 end 64 65 def record_params 66 params.require(:record).permit(:title, :memo, :menu_id, :rep, :set, :weight, :start_time).merge(user_id: current_user.id) 67 end 68end
ruby
1class Record < ApplicationRecord 2 extend ActiveHash::Associations::ActiveRecordExtensions 3 belongs_to :menu 4 5 belongs_to :user 6 7 with_options presence: true do 8 validates :title 9 validates :memo 10 validates :menu_id 11 validates :rep 12 validates :set 13 validates :weight 14 end 15 validates :menu_id, numericality: { even: true } 16end
ruby
1<%= form_with(model: @record, local: true) do |form| %> 2 <div class="title"> 3 <%= form.label :title, "タイトル" %> 4 <%= form.text_field :title %> 5 </div> 6 7 <div class="time"> 8 <%= form.label :time, "時間" %> 9 <%= form.datetime_select :start_time %> 10 </div> 11 12 <div class="memo"> 13 <%= form.label :memo, "memo" %> 14 <%= form.text_field :memo %> 15 </div> 16 17 <div class="menu"> 18 <%= form.label :menu_id, "種目" %> 19 <%= form.collection_select(:menu_id, Menu.all, :id, :name, {}) %> 20 </div> 21 22 <div class="rep"> 23 <%= form.label :rep, "レップ数" %> 24 <%= form.select :rep, [*(0..30)]%> 25 </div> 26 27 <div class="set"> 28 <%= form.label :set, "セット数" %> 29 <%= form.select :set, [*(1..20)]%> 30 </div> 31 32 <div class="weight"> 33 <%= form.label :weight, "重量" %> 34 <%= form.select :weight, [*(1..200)]%> 35 </div> 36 37 <div class="submit"> 38 <%= form.submit "保存" %> 39 <%=link_to 'もどる', root_path %> 40 </div> 41<% end %>
試したこと
render :new を redirect_to :new_record_pathにすれば、問題なく挙動はするが、エラーが表示できないため断念
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/12/23 01:38
2020/12/23 04:07
退会済みユーザー
2020/12/23 06:55