前提・実現したいこと
現在Rails でアプリを作成しています。
投稿した記事にコメントをつけると言う機能を実装中に以下のエラーメッセージが発生しました。
仕様としましては、投稿(アプリの都合でicebreakとしています。)詳細ページにコメント入力フォームを作成し、そこから入力すると、同ページにコメントが表示されるようにしたいです。
モデルはUser,Icebreak,Commentの3つです。
関連付けは、User has_many icebreaks
User has_many comments
icebreak has_many comments という関連付けです。
発生している問題・エラーメッセージ
ActiveRecord::NotNullViolation in CommentsController#create
PG::NotNullViolation: ERROR: null value in column "icebreak_id" of relation "comments" violates not-null constraint DETAIL: Failing row contains (17, レビュ, 1, null, 2021-01-23 12:09:06.805895, 2021-01-23 12:09:06.805895).
エラーメッセージで表示された箇所
@comment.icebreak_id = params[:id] if @comment.save! flash[:notice] = "レビューの投稿が完了しました" redirect_to("/icebreaks/#{params.id}") else
該当のソースコード
comments.controller.rb
ruby
1class CommentsController < ApplicationController 2 def new 3 @comment = Comment.new 4 end 5 6 def create 7 @comment = Comment.new( 8 content: params[:content] 9 ) 10 @comment.user_id = @current_user.id 11 @comment.icebreak_id = params[:id] 12 13 if @comment.save! 14 flash[:notice] = "レビューの投稿が完了しました" 15 redirect_to("/icebreaks/#{params.id}") 16 else 17 flash[:notice] = "レビューの投稿ができませんでした。" 18 redirect_to("/icebreaks") 19 end 20 end 21 22 23end
投稿詳細画面 app/views/icebreaks/show.html.erb
<h2><%= @icebreak.name %></h2> <p><%= @icebreak.description %></p> <p>作成者:<%= @user.name %>さん</p> <%= link_to("編集", "/icebreaks/#{@icebreak.id}/edit")%> <%= link_to("削除", "/icebreaks/#{@icebreak.id}/destroy", {method:"post"})%> <h2>コメント一覧</h2> <% @comments.each do |c| %> <div> <a href="/users/<%= @icebreak.user.id %>"><%= c.user.email %></a> <%= c.content %> <hr> </div> <% end %> <%= form_tag("/comments/create") do %> <p>このアイスブレイクのレビュー</p> <input name="content" value= "レビュー"> <input type= "submit" value="レビューする"> <% end %>
class IcebreaksController < ApplicationController def index #アイスブレイク一覧 @icebreaks = Icebreak.all end def show #アイスブレイク詳細 @icebreak = Icebreak.find_by(id: params[:id]) @user = User.find_by(id: @icebreak.user_id) @comments = @icebreak.comments @comment = Comment.new #@comment = Comment.find_by(id: params[:id]) #@icebreak = Icebreak.find_by(id: @comment.icebreak_id) end def create @icebreak = Icebreak.new( name: params[:name], description: params[:description] ) @icebreak.user_id = @current_user.id @icebreak.save redirect_to("/icebreaks") end def edit @icebreak = Icebreak.find_by(id: params[:id]) end def update @icebreak = Icebreak.find_by(id: params[:id]) @icebreak.name = params[:name] @icebreak.description = params[:description] if @icebreak.save flash[:notice] = "アイスブレイク情報を更新しました" redirect_to("/icebreaks/#{@icebreak.id}") else render("icebreaks/edit") end end def destroy @icebreak = Icebreak.find_by(id: params[:id]) @icebreak.destroy redirect_to("/icebreaks") end end
補足情報
このエラーで1日以上悩んでいます。どうかご助力願います。
回答1件
あなたの回答
tips
プレビュー