不知道我错过了什么。首先,如果我手动导航到它,这是一条有效的路线......
/orientations/1/registrations
这向我显示了与第一个方向相关的所有注册。现在,我正在尝试在我的视图中创建指向这些路线的链接。这是 rake 路由的输出...
http://pastie.org/pastes/8440065/text
在我看来,我正在尝试做...
<%= link_to "R", orientation_registration_path(orientation) %></li>
...我得到的错误是...
No route matches
{
:action => "show",
:controller => "registrations",
:orientation_id => #<Orientation
id: 1,
class_date: "2013-10-17",
class_time: "11:30am",
seats: 30,
active: true,
created_at: "2013-10-28 14:22:42",
updated_at: "2013-10-28 14:22:42">
}
我错过了什么?