前提・実現したいこと
投稿一覧ページから投稿のお気に入りをできる機能を実装中です。
Ajax通信にてお気に入り登録を行い、お気に入りボタンの表示を変えるように実装したいです。
(その後、お気に入りした投稿は、マイページからお気に入り一覧としてみれるよう実装したいです。)
発生している問題・エラーメッセージ
rails routesでパスを確認し、お気に入りボタンにfavorites#createのパスを与えているが、
お気に入りが保存されていない。ボタンの表示もクリックした状態から変わっていないので、Ajax通信も上手く作動していない様子。
エラー画面は出ておりません。
該当のソースコード
#####routes.rb
Rails.application.routes.draw do devise_for :users root to:"posts#index" resources :users do collection do get 'favorites' end end resources :posts do collection do get 'search' end collection do get 'favorites' end resources :favorites, only: [:create, :destroy, :index] resources :reviews, only: [:create, :destroy] end end
#####posts/index.html.erb
ruby
1 2<div class="row"> 3 <% @posts.each do |post| %> 4 <div class="col-8"> 5 <div class="card"> 6 <div class="card-body"> 7 <h4 class="card-title"> 8 <%= link_to post.campsite, "#", method: :get %> 9 </h4> 10 </div> 11 <%= link_to post_path(post.id), method: :get do %> 12 <%= image_tag post.image, class: "img-fluid" %> 13 <% end %> 14 <div class="card-body"> 15 <h5 class="card-subtitle"><%= link_to post.user.nickname, "/users/#{post.user_id}", method: :get %></h5> 16 <div id="favorites_buttons_<%= post.id %>"> 17 <%= render partial: 'favorites/favorite', locals:{ post: post } %> 18 </div> 19 <h5 class="card-text"><%= post.text %></h5> 20 </div> 21 </div> 22 </div> 23 <% end%> 24</div>
#####favorites/_favorite.html.erb
<% if user_signed_in? %> <% if post.favorited_by?(current_user) %> <%= link_to post_favorite_path(post.id), method: :delete, remote: true do %> <button type="button" class="btn btn-light"> <h2><i class="fa fa-star" aria-hidden="true"></i><%= post.favorite_count %></h2> </button> <% end %> <% else %> <%= link_to post_favorites_path(post.id), method: :post, remote: true do %> <button type="button" class="btn btn-light"> <h2><i class="fa fa-star-o" aria-hidden="true"></i><%= post.favorite_count %></h2> </button> <% end %> <% end %> <% else %> <button type="button" class="btn btn-light"> <h2><i class="fa fa-star" aria-hidden="true"></i><%= post.favorite_count %></h2> </button> <% end %>
#####favorites/create.js.erb
$("#favorites_buttons_<%= @post.id %>").html("<%= escape_javascript(render('favorites/favorite')) %>");
#####favorites/destroy.js.erb
$("#favorites_buttons_<%= @post.id %>").html("<%= escape_javascript(render('favorites/favorite')) %>");
#####favorites_controller.rb
class FavoritesController < ApplicationController before_action :set_post before_action :authenticate_user! def index favorite_posts = Favorite.where(user_id: current_user.id).order(created_at: :desc) @favorite_posts = favorite_posts end def create if @post.user_id != current_user.id @favorite = Favorite.create(user_id: current_user.id, post_id: @post.id) @favorite.save end end def destroy @favorite = Favorite.find_by(user_id: currrent_user.id, post_id: @post.id) @favorite.destroy end private def set_post @post = Post.find(params[:id]) end end
試したこと
paramsの中身、jqueryのインストール、ルーティングの確認をいたしましたが、どこが原因なのか分からず、お聞きいたしました。
補足情報(FW/ツールのバージョンなど)
rails 6
プログラミング始めたてで、不足があるかと思いますが、ご回答いただければ幸いです。
ここにより詳細な情報を記載してください。