你好 Angular 社区:我在我的应用程序中使用 Angular 1.4 的 ngNewRouter,我发现了一系列问题,也许没有,这是我的无知....当您定义嵌套路由器时,仅在直接父级而不是查看路由器的定义链,我认为这违反了模块化...
例如: MainController 定义如下配置:
$router.config ([
{
path: '/ process'
components: {
main: 'process'
}
},
{
path: '/ process /: id'
components: {
main: 'instance'
}
}
InstanceController 定义如下:
{
path: '/ district /: id'
components: {
main: 'instance.details'
}
}
然后,关联的模板不会在视口中呈现,但如果我将 IntanceCntroller 的设置移动到 MainController 一切正常。
任何想法?