余烬rc1。我不明白视图是如何通过命名约定自动实例化它们的路由的。
我定义了以下资源:
this.resource('groups', { path : '/groups' }, function() {
this.resource('received', { path : '/received' }, function() {
this.route('show', { path : '/:asset_link_group_id' });
});
当路由器为组/接收/索引实例化视图时,它会查找名为 ReceivedIndexView 的视图。为什么不 GroupsReceivedIndexView ?
控制器也是如此 - 它查找 ReceivedIndexController,而不是 GroupsReceivedIndexController。为什么?