①分からないこと:NoMethodError private method `select' called for # の解決方法
②エラーが発生した機能:課題に対し回答を行うアプリの、回答に対するいいね機能の、いいね削除
③いいねをつけること、いいね数をカウントしてビューに表示することはできます
postsIndexHtmlHaml
1.posts__a__post__like 2 - like = Like.where(post_id: post.id).where(user_id: current_user.id) 3 4 - if like.present? 5 .posts__a__post__liked__icon 6 -# エラー発生箇所 7 - like_id = Like.find_by(copy_id: copy.id, user_id: current_user.id).select("id") 8 = link_to kadai_post_like_path(post.kadai_id,post.id,like_id),method: :delete do 9 %i.fas.fa-heart 10 11 - else 12 .posts__a__post__like__icon 13 = link_to kadai_post_likes_path(post.kadai_id,post.id),method: :post do 14 %i.far.fa-heart 15 16 .posts__a__post__like__count 17 - count = Like.where(post_id: post.id).count 18 = count
likesContoroller
1class LikesController < ApplicationController 2 3 def create 4 Like.create(post_id: params[:post_id], user_id: current_user.id) 5 end 6 7 def destroy 8 like = Like.find(params[:id]) 9 like.destroy if like.user_id == current_user.id 10 end 11 12 private 13 14 def like_params 15 params.permit(:post_id) 16 end 17 18end
postsController
1 def index 2 @posts = Post.order("created_at DESC") 3 end
postsRb
1class Post < ApplicationRecord 2 has_many :likes, dependent: :destroy 3 has_many :comments, dependent: :destroy 4 belongs_to :user 5 belongs_to :kadai 6 7 8 mount_uploader :image, ImageUploader 9end
likeRb
1class Like < ApplicationRecord 2 belongs_to :user 3 belongs_to :post 4 validates :user_id, presence: true 5 validates :post_id, presence: true 6end 7
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。