前提・実現したいこと
Ruby on Railsで画像投稿とそれに対するコメント投稿ができるアプリケーションを実装中です。画像投稿機能の実装が終わり、コメント投稿機能の実装中に以下のエラーが発生しました。
エラーの内容を把握し、同じようなエラーが出たときに、考察できるようになりたい。
エラーメッセージの「titleがNilに対して定義されていない」という意味がどういうことなのか、理解しバグを見つけたい。
発生している問題・エラーメッセージ
Showing /Users/ruth/projects/protospace-35643/app/views/prototypes/show.html.erb where line #5 raised: undefined method `title' for nil:NilClass Extracted source (around line #5): 3 <div class="prototype__wrapper"> 4 <p class="prototype__hedding"> 5 <%= @prototype.title %> <---- ここ 6 </p> 7 <%= link_to "by #{@prototype.user.name}", prototype_path(@prototype.user.id), class: :prototype__user %> 8 <%# プロトタイプの投稿者とログインしているユーザーが同じであれば以下を表示する %>
該当のソースコード
routes.rb
Rails.application.routes.draw do devise_for :users root to: "prototypes#index" resources :users, only: :show resources :prototypes do resources :comments, only: :create end end
prototypes_controller.rb
before_action :set_prototype, only: [:edit, :show] before_action :move_to_index, except: [:index, :show] def index @prototypes = Prototype.includes(:user) end def new @prototype = Prototype.new end def create @prototype = Prototype.new(prototype_params) if @prototype.save redirect_to root_path else render :new end end def show @comment = Comment.new @comments = @prototype.comments.includes(:user) end def destroy @prototype = Prototype.find(params[:id]) if @prototype.destroy redirect_to root_path end end def edit end def update @prototype = Prototype.find(params[:id]) if @prototype.update(prototype_params) redirect_to prototype_path(@prototype.id) else render :edit end end private def prototype_params params.require(:prototype).permit(:title, :catch_copy, :concept, :image, :user_id).merge(user_id: current_user.id) end def set_prototype @prototype = Prototype.find(params[:id]) end def move_to_index unless user_signed_in? redirect_to action: :index end end end
comments_contoroller.rb
def create @comment = Comment.new(@comment_params) if @comment.save redirect_to action: :show else render template: "prototypes/show" end end private def comment_params params.require(:comment).permit(:text).merge(user_id: current_user.id, prototype_id: params[:prototype_id]) end end
prototypes/show.html.erb
<main class="main"> <div class="inner"> <div class="prototype__wrapper"> <p class="prototype__hedding"> <%= @prototype.title %> </p> <%= link_to "by #{@prototype.user.name}", prototype_path(@prototype.user.id), class: :prototype__user %> <%# プロトタイプの投稿者とログインしているユーザーが同じであれば以下を表示する %> <% if user_signed_in? && current_user.id == @prototype.user_id%> <div class="prototype__manage"> <%= link_to "編集する", edit_prototype_path(@prototype.id), class: :prototype__btn %> <%= link_to "削除する", prototype_path(@prototype.id), method: :delete, class: :prototype__btn %> </div> <% end %> <%# // プロトタイプの投稿者とログインしているユーザーが同じであれば上記を表示する %> <div class="prototype__image"> <%= image_tag @prototype.image, class: :card__img %> </div> <div class="prototype__body"> <div class="prototype__detail"> <p class="detail__title">キャッチコピー</p> <p class="detail__message"> <%= @prototype.catch_copy %> </p> </div> <div class="prototype__detail"> <p class="detail__title">コンセプト</p> <p class="detail__message"> <%= @prototype.concept %> </p> </div> </div> <div class="prototype__comments"> <%# ログインしているユーザーには以下のコメント投稿フォームを表示する %> <% if user_signed_in? %> <%= form_with model: [@prototype, @comment],local: true do |f|%> <div class="field"> <%= f.label :text, "コメント" %><br /> <%= f.text_field :text, id:"comment_text" %> </div> <div class="actions"> <%= f.submit "送信する", class: :form__btn %> </div> <% end %> <% end %> <%# // ログインしているユーザーには上記を表示する %> <ul class="comments_lists"> <%# 投稿に紐づくコメントを一覧する処理を記述する %> <% @comments.each do |comment| %> <li class="comments_list"> <%= comment.text %> </li> <%= link_to comment.user.name, "/users/#{comment.user_id}", class: :comment_user %> <% end %> <%# // 投稿に紐づくコメントを一覧する処理を記述する %> </ul> </div> </div> </div> </main>
試したこと
1スペルミスのチェック
2ルーティングができているか
3モデル同士のアソシエーションができているか
4comments_controller.rbのredirect_toとrenderのメソッドが定義されているか
5comments_controller.rbのcreateメソッド内で呼び出すファイルの定義はあっているか
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答4件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。