前提・実現したいこと
SNSアプリのいいね機能を実装している時にRouting Errorが発生しました。
発生している問題・エラーメッセージ
Routing Error No route matches [GET] "/posts/15/likes"
該当のソースコード
haml
1###show.html.haml 2 3.PostInfo__likes 4 - if current_user.already_liked?(@post) 5 = link_to post_like_path(@post, @like), method: :delete, class: 'PostInfo__likes--blackIcon' do 6 = icon('fas', 'heart') 7 %span<> 8 - else 9 = link_to post_likes_path(@post), class: 'PostInfo__likes--redIcon' do 10 = icon('far', 'heart') 11 %span<> 12 13
route
1###routes.rb 2 3Rails.application.routes.draw do 4 devise_for :users 5 resources :users, only: [:show] 6 resources :posts, only: [:index, :new, :create, :show] do 7 resources :comments, only: [:create] 8 resources :likes, only: [:create, :destroy] 9 end 10 11 12 get 'posts/index' 13 # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html 14 root "posts#index" 15end 16
ryby
1###likes_controller.rb 2 3class LikesController < ApplicationController 4 5 def create 6 @like = current_user.likes.create(post_id: params[:post_id]) 7 redirect_back(fallback_location: root_path) 8 end 9 10 def destroy 11 @like = Like.find_by(post_id: params[:post_id], user_id: current_user.id) 12 @like.destroy 13 redirect_back(fallback_location: root_path) 14 end 15end 16
試したこと
$rails routesでパスを確認しました。
post_likes POST /posts/:post_id/likes(.:format) likes#create post_like DELETE /posts/:post_id/likes/:id(.:format) likes#destroy
指定されたパスをしていてきていると思うんですが、、、、
あと、ルーティングの書き方が自信がないですがあっていますでしょうか?
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。