個別のmembersのページにそれに関連づくcommentのリンクをクリックするとそのcommentの詳細を表示できるようにしたい。
members/show
html
1<%= @member.name %> 2<% @member.member_comments.each do |m| %> 3 <%= m.comment.place %> 4 <%= link_to "詳細を見る", comment_path %> 5<% end %>
ルート
routes
1comment GET /comments/:id(.:format) comments#show
コントローラー
controller
1class CommentsController < ApplicationController 2 3 before_action :authenticate_user!, only: [:create, :show] 4 5 def index 6 @comments = Comment.all 7 @comment = Comment.new 8 end 9 10 def new 11 @comment = Comment.new 12 @comment.member_comments.build 13 end 14 15 def create 16 # binding.pry 17 @comment = Comment.new(comment_params) 18 @comment.user_id = current_user.id 19 20 if @comment.save 21 redirect_to user_path(current_user.id) 22 else 23 render :new 24 end 25 end 26 27 def show 28 @comment = Comment.find(params[:id]) 29 @like = Like.new 30 end 31 32 def update 33 end 34 35 def destory 36 comment = Comment.find(params[:id]) 37 comment.destory 38 end 39 40 private 41 def comment_params 42 params.require(:comment).permit(:place, :text, :image, { :member_ids => [] }) 43 end 44 45end
comments/show
html
1<div class="contents"> 2 <div class="content"> 3 <div class="content__info"> 4 <div class="content__left-name"> 5 <% @comment.member.each do |m| %> 6 <%= m.name %> 7 <% end %> 8 </div> 9 <div class="content__right-place"> 10 <%= @comment.place %> 11 </div> 12 </div> 13 <div class="image"> 14 <%= image_tag@comment.image %> 15 </div> 16 <div class="comments"> 17 <div class="comment"> 18 <%= @comment.text %> 19 </div> 20 </div> 21 <h3>いいね件数: <%= @comment.likes.count %></h3> 22 <% if current_user.already_liked?(@comment) %> 23 <%= button_to 'いいねを取り消す', comment_like_path(@comment), method: :delete %> 24 <% else %> 25 <%= button_to 'いいね', comment_likes_path(@comment) %> 26 <% end %> 27 <h2>いいねしたユーザー</h2> 28 <% @comment.liked_users.each do |user| %> 29 <li><%= user.name %></li> 30 <% end %> 31 </div> 32</div>
これでcomments/showに遷移すると例えばmemberのidが2のときはcommentのidが2の物が表示される。
中間テーブルを通して紐づくcommentを取り出せていない。
試したこと
comment_pathに(member_comments.comment.id)を入れると
error
1NameError in Members#show 2/app/views/members/show.html.erb where line #4 raised: 3undefined local variable or method `member_comments' for #<#<Class:0x00007fb2311dc9d8>:0x00007fb22fceb830> 4Did you mean? member_path
(@comment)を入れると
error
1ActiveRecord::RecordNotFound in CommentsController#show 2Couldn't find Comment with 'id'=#<Comment::ActiveRecord_Relation:0x00007fb231b39710>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/28 14:59