嵌套路由和控制器不同于模型

时间:2012-02-14 18:11:44

标签: ruby-on-rails-3

我有一个嵌套模型

resources doctors do
    resource  :doctor_profile
    resource  :organization
end

我想要一个名为“doctor_registration_controller”的注册控制器

然后我希望医生注册这样的东西

match 'doctor_signup', 'to:doctor_registration#new', :as => "doctor_signup"

生成此网址

本地主机:3000 / doctor_signup

路线档案中应包含哪些内容?

1 个答案:

答案 0 :(得分:0)

您已经在路线文件中拥有该功能,但需要进行一些更改:

match "/doctor_signup" => "doctor_registration#new", :as => "doctor_signup" 
如果你有一个新方法的doctor_registration控制器,

应该有效。

详细了解如何在Rails Routing from the Outside In中发布指南。