前提・実現したいこと
プログラミング2ヶ月の初学者です、至らぬ点含め指摘していただけると幸いです。
現在作成中のSNSにいいね機能を追加実装しようとしています。
ボタンを押したらマークの色が変わり、カウント数に変動がある物を作りたいです。
現状はどの投稿のボタンを押しても1度目は最新の投稿のマークの色が変わり、それ以降に変化がなく、またカウント数はどこにも変動がありません。
発生している問題・エラーメッセージ
Started DELETE "/posts/4/likes/%23%3CLike::ActiveRecord_Relation:0x00007fec95f83110%3E" for ::1 at 2020-12-10 02:00:25 +0900 Processing by LikesController#destroy as JS Parameters: {"authenticity_token"=>"1wHtAGSVjj28czHdRnnY9frfv6HZFSReq+HgIJJVGB7RuAp8MLplU4pKz3NvUcSOEoyBkmlS/6SaRTXhUgyk/g==", "post_id"=>"4", "id"=>"#<Like::ActiveRecord_Relation:0x00007fec95f83110>"} Post Load (0.4ms) SELECT `posts`.* FROM `posts` WHERE `posts`.`id` = 4 LIMIT 1 ↳ app/controllers/likes_controller.rb:22:in `set_post' User Load (0.4ms) SELECT `users`.* FROM `users` WHERE `users`.`id` = 1 ORDER BY `users`.`id` ASC LIMIT 1 ↳ app/controllers/likes_controller.rb:13:in `destroy' Like Load (0.4ms) SELECT `likes`.* FROM `likes` WHERE `likes`.`user_id` = 1 AND `likes`.`post_id` = 4 LIMIT 1 ↳ app/controllers/likes_controller.rb:13:in `destroy' (0.2ms) BEGIN ↳ app/controllers/likes_controller.rb:14:in `destroy' Like Destroy (0.3ms) DELETE FROM `likes` WHERE `likes`.`id` = 39 ↳ app/controllers/likes_controller.rb:14:in `destroy' Post Update All (0.3ms) UPDATE `posts` SET `posts`.`likes_count` = COALESCE(`posts`.`likes_count`, 0) - 1 WHERE `posts`.`id` = 4 ↳ app/controllers/likes_controller.rb:14:in `destroy' (1.6ms) COMMIT ↳ app/controllers/likes_controller.rb:14:in `destroy' Rendering likes/destroy.js.erb Like Load (0.4ms) SELECT `likes`.* FROM `likes` WHERE `likes`.`post_id` = 4 AND `likes`.`user_id` = 1 LIMIT 1 ↳ app/models/post.rb:6:in `like_user' Rendered likes/_like.html.erb (Duration: 2.2ms | Allocations: 1033) Rendered likes/destroy.js.erb (Duration: 2.5ms | Allocations: 1137) Completed 200 OK in 17ms (Views: 2.5ms | ActiveRecord: 4.1ms | Allocations: 6591)
ターミナルにこのようなメッセージが残ったのみでステータスも200となっていて原因が分からなくなってしまいました。
該当のソースコード
Ruby
1_like.html.erb 2 3<% if user_signed_in? %> 4 <% if post.like_user(current_user.id) %> 5 <%= button_to post_like_path(like, post_id: post.id), method: :delete, id: "like-button", remote: true do %> 6 <i class="fas fa-star"></i> 7 <span> 8 <%= post.likes_count %> 9 </span> 10 <% end %> 11 <% else %> 12 <%= button_to post_likes_path(post), id: "like-button", remote: true do %> 13 <i class="far fa-star"></i> 14 <span> 15 <%= post.likes_count %> 16 </span> 17 <% end %> 18 <% end %> 19 <% else %> 20 <i class="far fa-star"></i> 21 <span> 22 <%= post.likes_count %> 23 </span> 24<% end %> 25
Ruby
1create.js.erb 2 3$("#like-button").html("<%= j(render partial: 'like', locals: { posts: @posts, likes: @likes, like: @like, post: @post}) %>") 4
Ruby
1destroy.js.erb 2 3 4$("like-button").html("<%= j(render partial: 'like', locals: { posts: @posts, likes: @likes, like: @like, post: @post}) %>") 5
Ruby
1likes_contoroller 2 3 before_action :set_post 4 5 def create 6 @like = Like.create(user_id: current_user.id, post_id: params[:post_id]) 7 @likes = Like.where(post_id: params[:post_id]) 8 @posts = Post.all 9 10 end 11 12 def destroy 13 like = Like.find_by(user_id: current_user.id, post_id: params[:post_id]) 14 like.destroy 15 @likes = Like.where(post_id: params[:post_id]) 16 @posts = Post.all 17 18 end 19 20 private 21 def set_post 22 @post = Post.find(params[:post_id]) 23 end 24 25end 26
Ruby
1posts.index.html.erb 2 3<div class="row row-cols md-3"> 4 <% @posts.each do |post| %> 5 <div class="card d-flex justify-content-around m-5" style="width: auto; heigth: auto;"> 6 <div class="card-body border border-primary"> 7 8 9 <%= image_tag post.image, :width => '280', :height => '280'if post.image.attached? %> 10 11 12 <h4 class="card-title"><%= post.title %></h4> 13 1位<p class="card-text"><%= post.rank1 %></p> 14 2位<p class="card-text"><%= post.rank2 %></p> 15 3位<p class="card-text"><%= post.rank3 %></p> 16 17 18 <div class="btn-group"> 19 <button type="button" class="btn btn-5m btn-outline-secondary"> 20 <%= link_to '詳細', post_path(post.id) , method: :get %></button> 21 <button type="button" class="btn btn-5m btn-outline-secondary"> 22 <%=link_to post.user.name, user_path(post.user.id)%></button> 23 </div> 24 25 <div id="likes_buttons_<%= post.likes_count %>"> 26 いいね<%= render partial:'likes/like', locals: { post: post, like: @likes } %> 27 </div> 28 29 30 31 <p class="card-text"> 32 <small class="text-muted"><%= post.updated_at %> 33 </small> 34 </p> 35 36 </div> 37 </div> 38 <% end %> 39 </div> 40 41
Ruby
1like.rb モデル 2 3class Like < ActiveRecord::Base 4 belongs_to :post, counter_cache: :likes_count 5 belongs_to :user 6end 7
Ruby
1post.rb モデル 2 3class Post < ActiveRecord::Base 4 has_one_attached :image 5 belongs_to :user 6 has_many :likes, dependent: :destroy 7 def like_user(user_id) 8 likes.find_by(user_id: user_id) 9 end 10end
試したこと
binding.pryをかけたところparamsが
ターミナル <ActionController::Parameters {"authenticity_token"=>"gxBOFDsxRNsgEq0PQvSjA11efb+daxFe00BjrFNk8IaFqalobx6vtRYrU6Fr3L94tQ1DjC0syqTi5LZtkz1MZg==", "controller"=>"likes", "action"=>"create", "post_id"=>"1"} permitted: false>
となっていました。この先のアクションプランが見えず原因追及に至れませんでした。
補足情報(FW/ツールのバージョンなど)
https://qiita.com/YuitoSato/items/94913d6a349a530b2ea2
こちらの記事を参考に実装を進めています
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/09 18:54
2020/12/09 22:09