我开始第一次使用带有命名空间的路线,我理解以下概念:
namespace :company do
namespace :project, defaults:{format: json } do
resources :registration
end
end
我的控制器长得像
class Company::Project::RegistrationController < ApplicationController
before_filter :authenticate_user!
#responds_to :json
def register
end
def entry
end
end
因此,在资源中,我想定义 register
和 entry
的路线,我没有找到任何能真正告诉我如何做到这一点的东西。我知道,如果我不使用命名空间,我通常会在我的路径文件中做类似的事情。
match company/project/registration/register => "Registration#register"
在命名空间块内有办法做到这一点吗?
---------- after changes -------------- after making suggested changes below in the first answer this is what running >rake routes gives me
register_company_project_registration POST /company/project/registration/:id/register(.:format) company/project/Registration#register {:format=>"json"}
entry_company_project_registration POST /company/project/registration/:id/entry(.:format) company/project/Registration#enrty {:format=>"json"}
company_project_registration_index GET /company/project/registration(.:format) company/project/registration#index {:format=>"json"}
POST /company/project/registration(.:format) company/project/registration#create {:format=>"json"}
new_company_project_registration GET /company/project/registration/new(.:format) company/project/registration#new {:format=>"json"}
edit_company_project_registration GET /company/project/registration/:id/edit(.:format) company/project/registration#edit {:format=>"json"}
company_project_registration GET /company/project/registration/:id(.:format) company/project/registration#show {:format=>"json"}
PUT /company/project/registration/:id(.:format) company/project/registration#update {:format=>"json"}
DELETE /company/project/registration/:id(.:format) company/project/registration#destroy {:format=>"json"}