前提・実現したいこと
簡単な画像投稿アプリを作っています。
コメントを投稿すると、意図しない文字列が出てきます。
1.投稿した内容がコメント欄に表示されるようにしたい。
2.コメントをした人を投稿者名として表示させたい。(今は画像を投稿した本人の名前がでできます。「1」といいうのが画像を投稿した人の名前です。)
発生している問題・エラーメッセージ
該当のソースコード
ruby
1view>prototypes>show.html.erb 2 3<main class="main"> 4 <div class="inner"> 5 <div class="prototype__wrapper"> 6 <p class="prototype__hedding"> 7 <%= @prototype.title%> 8 </p> 9 <%= link_to "by#{@prototype.user.name} ", root_path, class: :prototype__user %> 10 <%# プロトタイプの投稿者とログインしているユーザーが同じであれば以下を表示する %> 11 <% if user_signed_in? && current_user.id == @prototype.user_id %> 12 <div class="prototype__manage"> 13 <%= link_to "編集する", edit_prototype_path(@prototype.id), class: :prototype__btn %> 14 <%= link_to "削除する", prototype_path(@prototype.id), method: :delete, class: :prototype__btn %> 15 </div> 16 <% end %> 17 <%# // プロトタイプの投稿者とログインしているユーザーが同じであれば上記を表示する %> 18 <div class="prototype__image"> 19 <%= image_tag @prototype.image %> 20 </div> 21 <div class="prototype__body"> 22 <div class="prototype__detail"> 23 <p class="detail__title">キャッチコピー</p> 24 <p class="detail__message"> 25 <%= @prototype.catch_copy %> 26 </p> 27 </div> 28 <div class="prototype__detail"> 29 <p class="detail__title">コンセプト</p> 30 <p class="detail__message"> 31 <%= @prototype.concept %> 32 </p> 33 </div> 34 </div> 35 <div class="prototype__comments"> 36 <%# ログインしているユーザーには以下のコメント投稿フォームを表示する %> 37 <% if user_signed_in? %> 38 <%= form_with model: [@prototype,@comment], local: true do |f|%> 39 <div class="field"> 40 <%= f.label :text, "コメント" %><br /> 41 <%= f.text_field :text %> 42 </div> 43 <div class="actions"> 44 <%= f.submit "送信する", class: :form__btn %> 45 </div> 46 <% end %> 47 <% end %> 48 <%# // ログインしているユーザーには上記を表示する %> 49 <ul class="comments_lists"> 50 <%# 投稿に紐づくコメントを一覧する処理を記述する %> 51 <li class="comments_list"> 52 <%= @prototype.comments %> 53 <%= link_to @prototype.user.name, root_path, class: :comment_user %> 54 </li> 55 <%# // 投稿に紐づくコメントを一覧する処理を記述する %> 56 </ul> 57 </div> 58 </div> 59 </div> 60</main>
ruby
1class PrototypesController < ApplicationController 2 before_action :move_to_index, except: [:index, :show] 3 before_action :set_prototype, only: [:edit, :show] 4 5 6 def index 7 @prototypes = Prototype.all 8 end 9 10 def new 11 @prototype = Prototype.new 12 end 13 14 def create 15 @prototype = Prototype.new(prototype_params) 16 if @prototype.save 17 redirect_to action: :index 18 else 19 render :new 20 end 21 end 22 23 def show 24 @comment = Comment.new 25 @comments = @prototype.comments.includes(:user) 26 end 27 28 def edit 29 end 30 31 def update 32 @prototype = Prototype.find(params[:id]) 33 if @prototype.update(prototype_params) 34 redirect_to action: :show 35 else 36 render :edit 37 end 38 end 39 40 def destroy 41 @prototype = Prototype.find(params[:id]) 42 if @prototype.destroy 43 redirect_to action: :index 44 end 45 end 46 47 48 49 private 50 51 def prototype_params 52 params.require(:prototype).permit(:image, :title, :catch_copy, :concept,).merge(user_id: current_user.id) 53 end 54 55 def move_to_index 56 unless user_signed_in? 57 redirect_to action: :index 58 end 59 end 60 61 def set_prototype 62 @prototype = Prototype.find(params[:id]) 63 end 64 65 66end
ruby
1class CommentsController < ApplicationController 2 def create 3 @comment = Comment.new(comment_params) 4 if @comment.save 5 redirect_to prototype_path(@comment.prototype) 6 else 7 @prototype = @comment.prototype 8 @comments = @prototype.comments 9 render "prototypes/show" 10 end 11 end 12 13 private 14 def comment_params 15 params.require(:comment).permit(:text).merge(user_id: current_user.id, prototype_id: params[:prototype_id]) 16 end 17end
試したこと
1.showアクションのviewファイルの@prototype.commentsに記述の誤りがないか確認した。
2.それぞれのモデルのアソシエーションを確認した。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。