https://qiita.com/kitaokeita/items/59b625e0c43a62f5fe6aこの記事を参考にフォロー機能を作ったのですが「Routing Error」が出てしまいます。
routes.rbに原因があると思うのですがどこに不具合があるのかい教えていただけると幸いです。
##config/routes.rb
Rails.application.routes.draw do devise_for :users, controllers: { registrations: 'registrations' } get '/users/:id', to: 'users#show', as: 'user' # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html root 'posts#index' resources :posts, only: %i(index new create show destroy) do resources :comments, only: %i(create destroy) resources :likes, only: %i(create destroy) end resources :users do member do get :following, :followers end end resources :relationships, only: [:create, :destroy] end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2019/12/14 10:08
2019/12/14 10:16
退会済みユーザー
2019/12/14 10:35
2019/12/14 10:49
退会済みユーザー
2019/12/14 10:54
2019/12/14 11:21
2019/12/14 11:25
退会済みユーザー
2019/12/14 11:43
2019/12/14 11:47
退会済みユーザー
2019/12/14 12:00
2019/12/14 12:09
退会済みユーザー
2019/12/14 12:19