前提・実現したいこと
投稿の詳細画面に飛んだ時にコメントをできるようにしたのですが、このエラーが出てしまいます。
発生している問題・エラーメッセージ
NoMethodError in TweetsController#show undefined method `comments' for nil:NilClass Extracted source (around line #25): 23 def show 24 @comment = Comment.new *25行目が赤く表示 25 @comments = @tweet.comments.includes(:user) 26 end 27 28 private
該当のソースコード
def show @comment = Comment.new @comments = @tweet.comments.includes(:user) end
<div class="comments"> <h4><コメント一覧></h4> <% if @comments %> <% @comments.each do |comment| %> <p> <strong><%= link_to comment.user.nickname, "/users/#{comment.user_id}" %>:</strong> <%= comment.text %> </p> 以下省略
試したこと
おそらくここのcommentを表示する部分で何も入力されていないからエラーが出ると思うのですが、<% if @comments %>を記載して無くても動くように記載したのですが解決できませんでした。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。