前提・実現したいこと
コメント投稿機能の実装を行なっている際、コメント投稿を行ったらエラーが発生してしまいます。
初投稿ですので分かりにくい所があるかと思いますが、よろしくお願いします。
発生している問題・エラーメッセージ
エラーメッセージ NoMethodError in Comments#create Showing /Users/nk/projects/protospace-35366/app/views/prototypes/show.html.erb where line #5 raised: undefined method `title' for nil:NilClass
ruby
1 <div class="prototype__wrapper"> 2 <p class="prototype__hedding"> 3 <%= @prototype.title %> 4 </p> 5 <%= link_to @prototype.user.name, root_path, class: :prototype__user %> 6 <%# プロトタイプの投稿者とログインしているユーザーが同じであれば以下を表示する %> 7Rails.root: /Users/nk/projects/protospace-35366 8 9Application Trace | Framework Trace | Full Trace 10app/views/prototypes/show.html.erb:5 11app/controllers/comments_controller.rb:7:in `create' 12Request 13Parameters: 14 15{"authenticity_token"=>"UwzV+FnCo8JKcv8cVyDWO8OG4HGuT585k3X/KlgbPVGOB/Njy9zbZ8EblQlAWQjHixQOjXMI3vJTRGHCMWIziQ==", "comment"=>{"text"=>"コメント"}, "commit"=>"送信する", "prototype_id"=>"17"}
該当のソースコード
prototypes_controller.rb
ruby
1ソースコード 2class PrototypesController < ApplicationController 3 4 def index 5 @prototypes = Prototype.all 6 end 7 8 def show 9 @prototype = Prototype.find(params[:prototype_id] || params[:id]) 10 @comment = Comment.new 11 @comments = @prototype.comments.includes(:user) 12 end 13 14 def edit 15 @prototype = Prototype.find(params[:id]) 16 end 17 18 def update 19 @prototype = Prototype.find(params[:id]) 20 if @prototype.update(prototype_params) 21 redirect_to prototype_path(@prototype.id) 22 else 23 render :edit 24 end 25 end 26 27 def destroy 28 prototype = Prototype.find(params[:id]) 29 prototype.destroy 30 redirect_to root_path(@user) 31 32 end 33 34 def new 35 @prototype = Prototype.new 36 end 37 38 def create 39 @prototype = Prototype.create(prototype_params) 40 if @prototype.save 41 redirect_to root_path(@user) 42 else 43 render :new 44 end 45 end 46 47 private 48 def prototype_params 49 params.require(:prototype).permit(:title, :catch_copy, :concept, :image).merge(user_id: current_user.id) 50 end 51 52end
comments_controller.rb
ruby
1class CommentsController < ApplicationController 2 def create 3 @comment = Comment.new(comment_params) 4 if @comment.save 5 redirect_to prototype_path 6 else 7 render "prototypes/show" 8 end 9 end 10 11 private 12 def comment_params 13 params.require(:comment).permit(:text).merge(user_id: current_user.id, prototype_id: params[:prototype_id]) 14 end 15end
show.html.erb
ruby
1main class="main"> 2 <div class="inner"> 3 <div class="prototype__wrapper"> 4 <p class="prototype__hedding"> 5 <%= @prototype.title %> 6 </p> 7 <%= link_to @prototype.user.name, root_path, class: :prototype__user %> 8 <%# プロトタイプの投稿者とログインしているユーザーが同じであれば以下を表示する %> 9 <div class="prototype__manage"> 10 <% if user_signed_in? && current_user.id == @prototype.user_id %> 11 <%= link_to "編集する", edit_prototype_path, class: :prototype__btn %> 12 <%= link_to "削除する", prototype_path(@prototype.id), method: :delete, class: :prototype__btn %> 13 <% end %> 14 </div> 15 <%# // プロトタイプの投稿者とログインしているユーザーが同じであれば上記を表示する %> 16 <div class="prototype__image"> 17 <%= image_tag @prototype.image%> 18 </div> 19 <div class="prototype__body"> 20 <div class="prototype__detail"> 21 <p class="detail__title">キャッチコピー</p> 22 <p class="detail__message"> 23 <%= @prototype.catch_copy %> 24 </p> 25 </div> 26 <div class="prototype__detail"> 27 <p class="detail__title">コンセプト</p> 28 <p class="detail__message"> 29 <%= @prototype.concept %> 30 </p> 31 </div> 32 </div> 33 <div class="prototype__comments"> 34 <%# ログインしているユーザーには以下のコメント投稿フォームを表示する %> 35 <%= form_with model: [@prototype, @comment], local: true do |f|%> 36 <% if user_signed_in? %> 37 <div class="field"> 38 <%= f.label :text, "コメント" %><br /> 39 <%= f.text_field :text, id:"comment_text" %> 40 </div> 41 <div class="actions"> 42 <%= f.submit "送信する", class: :form__btn %> 43 </div> 44 <% end %> 45 <% end %> 46 <%# // ログインしているユーザーには上記を表示する %> 47 <ul class="comments_lists"> 48 <%# 投稿に紐づくコメントを一覧する処理を記述する %> 49 <li class="comments_list"> 50 <%# <%= " コメントのテキスト "%> 51 <%# <%= link_to "( ユーザー名 )", root_path, class: :comment_user %> 52 </li> 53 <%# // 投稿に紐づくコメントを一覧する処理を記述する %> 54 </ul> 55 </div> 56 </div> 57 </div> 58</main>
試したこと
同じ様な質問をされている方の回答を参考にprototypes_controller.rb
の
def show
の
@prototype = Prototype.find(params[:id])
を
@prototype = Prototype.find(params[:prototype_id] || params[:id])
に変更してみましたがエラーが解決しませんでした。
参考にした質問 https://teratail.com/questions/332667
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/07/07 12:18