前提・実現したいこと
現在掲示板アプリを作成していて、コメントに対してのいいね機能を実装している最中にエラーが起きました。いいねボタンを押したときにエラーが出るという現状です。ユーザー管理機能、投稿機能、コメント機能、いいね機能を実装しています。エラーの内容を検索しても、似たようなものが出てこないので、これがどのようなエラーなのか、またどのように記述を変更すれば良いかが知りたいです。プログラミング初学者のなので、至らない所だらけですが教えていただけると助かります。
発生している問題・エラーメッセージ
https://gyazo.com/3b5e90b9e8a21ee7d8116d0bf56fb70d
###該当のソースコード
like.rb class Like < ApplicationRecord belongs_to :user belongs_to :board belongs_to :comment validates_uniqueness_of :comment_id, scope: :user_id end
comment.rb class Comment < ApplicationRecord belongs_to :user belongs_to :board has_many :likes validates :text, presence: true end
likes_controller class LikesController < ApplicationController def create @board = Board.find(params[:board_id]) @comment = Comment.find(params[:comment_id]) ⇦エラー該当部分 @like = Like.create(user_id: current_user.id, board_id: board.id, comment_id: comment.id) redirect_to board_path(comment.board) end def destroy @board = Board.find(params[:board_id]) @comment = Comment.find(params[:comment_id]) Like.find_by(user_id: current_user.id, board_id: board.id, comment_id: comment.id).destroy redirect_to board_path(comment.post) end end
_like.html.erb <%if user_signed_in? %> <% if Like.find_by(user_id: current_user.id, board_id: @board.id, comment_id: @comment.id) %> <%= link_to board_comment_like_path(@board, @comment, @comment.likes), {class: "like-link", method: :delete } do %> <i class="fas fa-grin-squint-tears unlike-btn"></i> <% end %> <p class="count"><%= @comment.likes.count %></p> <% else %> <%= link_to board_comment_likes_path(@board, @comments), {class: "like-link", method: :post } do %> <i class="far fa-grin-squint-tears like-btn"></i> <% end %> <p class="count"><%= @comment.likes.count %></p> <% end %> <% else %> <i class="fas fa-grin-squint-tears unlike-btn"></i><p class="count"><%= @comment.likes.count %></p> <% end %>
boards_controller.rb class BoardsController < ApplicationController def index @boards = Board.includes(:user) end def new @board = Board.new end def create @board = Board.new(board_params) if @board.save redirect_to root_path else render :new end end def show @board = Board.find(params[:id]) @comment = Comment.new @comments = @board.comments.includes(:user) end def edit @board = Board.find(params[:id]) end def update @board = Board.find(params[:id]) @board.update(board_params) if @board.save redirect_to root_path else render :edit end end def destroy @board = Board.find(params[:id]) @board.destroy redirect_to root_path end private def board_params params.require(:board).permit(:title,:text,:image).merge(user_id: current_user.id) end end
###試したこと
Couldn't find Comment with
'id'=#Comment::ActiveRecord_AssociationRelation:0x00007fac41a778b8
と出ていたので、comment.rbとlike.rbのアソシエーションの記述が間違っていると思い確認しましたが、一対多の記述をしていました。自分なりにエラー文を検索してみましたが、解決できなかったので、お手数ですがよろしくお願い致します。
必要な情報がありましたら、ソースコードも追加します。
回答1件
あなたの回答
tips
プレビュー