我想创建这个路由,我需要传递任意_id和api/v2/api/v2/arbitrary/:arbitrary_id/sort_games这是路由,i使用资源:resources :arbitrary do get 'api/v2/sort_games', to: 'arbitrary#sort' end我试图将API/v2指示为静态
api/v2
/api/v2/arbitrary/:arbitrary_id/sort_games
resources :arbitrary do get 'api/v2/sort_games', to: 'arbitrary#sort' end
dw1jzc5e1#
namespace :api do namespace :v2 do get '/arbitrary/:arbitrary_id/sort_games', to: 'arbitrary#sort_games' end end
这个路由不是真正的RESTful,也不匹配resources模式(/arbitrary/...应该是复数;您需要将其添加到inflections.rb文件中)。
resources
/arbitrary/...
inflections.rb
1条答案
按热度按时间dw1jzc5e1#
这个路由不是真正的RESTful,也不匹配
resources
模式(/arbitrary/...
应该是复数;您需要将其添加到inflections.rb
文件中)。