我正在使用Rails 3应用程序,我想根据子域将路由分成单独的文件.现在我在我的routes.rb文件中有这个:
Skateparks::Application.routes.draw do constraints(:subdomain => 'api') do load 'routes/api.rb' end end
在我的路线/ api.rb文件我有:
resources :skateparks
这似乎没有工作,因为如果我跑rake路线我得到
undefined method `resources' for main:Object
另外,如果我试图导航到http://0.0.0.0:3000/我得到:
路由错误
No route matches "/"