Rubyの勉強を始めて一ヶ月の初心者です。初投稿です。
SNSの模倣アプリを作っています。
投稿された画像一覧(index)から詳細ページ(show)に飛ぶと、画像とコメント欄を表示するようにしています。
投稿された画像に対してコメント機能を実装しており、
投稿したコメントはDBに保存できている(コメント表示自体は仮置きしていた時)のですが、
コメントしたuserのnameを表示するところでエラーが発生してしまい、詳細ページに飛べなくなっています。
ご教授いただけますでしょうか。
発生している問題・エラーメッセージ
NoMethodError in Prototypes#show Showing /Users/akiracchi96/projects/twista/app/views/twistas/show.html.erb where line #51 raised: undefined method `name' for nil:NilClass ##show.html.erb <li class="comments_list"> <%= @comment.comment %> <%= link_to @comment.user.name, root_path, class: :comment_user %> #root_pathは仮置き </li>
該当のソースコード
##twistas_controller.rb class TwistasController < ApplicationController before_action :set_twista, only: [:show, :edit, :update, :destroy] //(省略)// def create @twista = Twista.create(prototype_params) if @twista.save redirect_to root_path else render action: :new end end def show @comment = Comment.new @comments = @twista.comments.includes(:user) end //(省略)// private def twista_params params.require(:prototype).permit(:image, :title, :catch_copy, :concept).merge(user_id: current_user.id) end def set_twista @twista = Twista.find(params[:id]) end
試したこと
showアクションでuser情報が取得できていないと思い、
@user = User.find(params[:id])を書いてみたが変わらなかった。
補足情報(FW/ツールのバージョンなど)
Rails 6.0.0
devise導入済
画像投稿はActive Storageで実装
Gemfile
1//(省略)// 2gem 'devise' 3gem 'mini_magick' 4gem 'image_processing', '~> 1.2'
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。