前提・実現したいこと
rails で Twitterクローンを作成中です。
いいね機能を設置しようとしているのですが
いいねの取消を実行すると、エラーが起こります。
エラーを解決して、いいね機能を実装したいです。
発生している問題・エラーメッセージ
ActionController::RoutingError (No route matches [DELETE] "/tweets/4/favorites"):
該当のソースコード
routes.rb
Rails.application.routes.draw do root to: 'toppages#index' get 'login', to: 'sessions#new' post 'login', to: 'sessions#create' delete 'logout', to: 'sessions#destroy' get 'signup', to: 'users#new' resources :users, only: [:index, :show, :new, :create] do member do get :followings get :followers end end resources :tweets, only: [:create, :destroy] do resources :favorites, only: [:create, :destroy] end resources :relationships, only: [:create, :destroy] end
いいねボタン
<% if current_user == tweet.user %> <%= link_to "Delete", tweet, method: :delete, data: { confirm: "You sure?" }, class: 'btn btn-danger btn-sm' %> <% end %> <% if current_user.already_favorited?(tweet) %> <%= link_to tweet_favorites_path(tweet), method: :delete do %> <i class="fas fa-heart"></i> <% end %> <% else %> <%= link_to tweet_favorites_path(tweet), method: :post do %> <i class="fas fa-heart"></i> <% end %> <% end %>
試したこと
rails routes の一部です。
tweet_favorites POST /tweets/:tweet_id/favorites(.:format) tweet_favorite DELETE /tweets/:tweet_id/favorites/:id(.:format)
2行目の tweet_favorite が tweet_favorites にできれば
エラーが解消されると考えたのですが、方法がわからなかったです。
補足情報(FW/ツールのバージョンなど)
rails のバージョンは Rails 5.2.4.4 です。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/28 07:47