ruby on railsでお気に入り機能を作成しようと思っているのですが,show.html.erbのお気に入り登録のリンクを押すと下記のエラーが起きてしまいます
No route matches [GET] "/games/9/bookmarks"
エラーで言われた通りにルーティングの記述が間違ってるかと思い、routes.rbを調べてみましたが特に間違ってはいないようです、ターミナルで rails routes で該当のルーティングを確認できました。
完全にお手上げ状態ですのでどなたかご享受お願いします。
routes.rb
1#省略 2resources :games, except: %i[destroy] do 3 resources :bookmarks, only: %i[create destroy] 4 resources :completions, only: %i[create destroy] 5end
show.html.erb
1#show.html.erb 2//省略 3 <div id="bookmarkButton" class="d-inline"> 4 <%= render 'bookmarks/button', game: @game %> 5 </div> 6//省略
_button.html.erb
1#_button.html.erb 2 3<% if user_signed_in? %> 4 <% if current_user.bookmarks.find_by(game_id: game.id) %> 5 <%= link_to game_bookmark_path(game_id: game.id, id: game.id), remote: true, method: :delete, class: "btn btn-warning text-white btn-sm" do %> 6 <i class="fas fa-bookmark"></i> お気に入り削除 7 <% end %> 8 <% else %> 9 <%= link_to game_bookmarks_path(game.id), method: :post, remote: true, class: "btn btn-warning text-white btn-sm" do %> 10 <i class="far fa-bookmark"></i> お気に入り登録 11 <% end %> 12 <% end %> 13<% end %>
destroy.js.erb
1#destroy.js.erb 2$("#bookmarkButton").html("<%= j(render 'bookmarks/button', game: @game) %>");
create.js.erb
1#create.js.erb 2$("#bookmarkButton").html("<%= j(render 'bookmarks/button', game: @game) %>");
bookmarksController.rb
1#bookmarksController.rb 2class BookmarksController < ApplicationController 3 before_action :only_user 4 before_action :set_game, only: %i[create destroy] 5 6 def create 7 @bookmark = current_user.bookmarks.build(game_id: params[:game_id]) 8 9 return unless @bookmark.save 10 end 11 12 def destroy 13 @bookmark = Bookmark.find_by(user_id: current_user.id, game_id: params[:game_id]) 14 15 return unless @bookmark.destroy 16 end 17 18 private 19 20 def set_game 21 @game = Game.find(params[:game_id]) 22 end 23end
あなたの回答
tips
プレビュー