前提・実現したいこと
あるユーザーが書いたdiary(日記)に対して、教師が1つのみreply(コメント)ができるように
実装していましたが、その際以下のようなエラーが出てきました。
なぜここでUserが見つからないエラー出てくるのか分かりません。
アソシエーションの関係でしょうか??
該当のソースコード
rails
1【reply : new.html.erb】 2 3(中略) 4 5<%= form_with class: 'form2', local: true do |f| %> 6 <div class="form-input"> 7 <%= f.text_area :reply_text, class: 'form-message3', placeholder: 'write a reply' %> 8 </div> 9 10 <%= f.submit '送信', class: 'form-submit' %> 11<% end %> 12 </div> 13</div>
rails
1【reply.rb】 2 3class Reply < ApplicationRecord 4 belongs_to :user 5 belongs_to :diary 6 validates :writing, presence: true 7end 8
rails
1【user.rb】 2 3class User < ApplicationRecord 4 5(省略) 6 7 has_many :diaries, dependent: :destroy 8 has_many :replies, dependent: :destroy 9 10end
rails
1【diary.rb】 2class Diary < ApplicationRecord 3 belongs_to :user 4 has_one :reply 5 validates :writing, presence: true 6end
rails
1【replies.controller.rb】 2 3class RepliesController < ApplicationController 4 def new 5 @reply = Reply.new 6 @user = User.find(params[:user_id]) 7 end 8 9 def create 10 @reply = Reply.new(reply_params) 11 if @reply.save 12 redirect_to root_path 13 else 14 redirect_to root_path 15 end 16 end 17 18 private 19 20 def reply_params 21 params.require(:reply).permit(:reply_text, :user_id, :diary_id).merge(user_id: current_user.id, diary_id: @diary.id) 22 end 23end 24
log
1Started GET "/diaries/2/replies/new" for ::1 at 2020-12-28 14:43:25 +0900 2Processing by RepliesController#new as HTML 3 Parameters: {"diary_id"=>"2"} 4 User Load (0.3ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 3 ORDER BY `users`.`id` ASC LIMIT 1 5Completed 404 Not Found in 3ms (ActiveRecord: 0.3ms | Allocations: 3486) 6 7ActiveRecord::RecordNotFound (Couldn't find User without an ID): 8 9app/controllers/replies_controller.rb:10:in `new'
補足情報(FW/ツールのバージョンなど)
rails 6.0
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/28 06:18
2020/12/28 07:30
2020/12/28 07:53