我有一个角度应用程序正在加载延迟模块。
首先,应用会导航到home
加载模块的位置(名为module1
):
主要路由:
const routes: Routes = [
{ path: "", redirectTo: "/home", pathMatch: "full" },
{ path: "home", loadChildren: "./module1/module1.module#Module1Module" },
];
在module1
- 还有路由表:
const routes: Routes = [
{
path: "", component: Home1Component,
children: [
{ path: 'bird', outlet: 'under', component: Home2Component }
]
}
];
因为它是懒散地加载,当应用程序启动时 - 它会转到/home
,在那里加载Home1Component
但是Home1Component
中还有一个按钮,它假设要为出口路线设置一个值。
home1.component.html:
<input value="click to activate aux route" type="button" (click)="go()"/>
<router-outlet ></router-outlet>
<router-outlet name='under'></router-outlet> //<---- I want to activate only this
这就是我尝试激活出口路线的方式:
public go() {
this.router.navigate([{ outlets: { under: ['bird'] } }], { relativeTo: this.route })
}
但是我收到了一个错误:
错误:无法匹配任何路线。网址细分:'主页'
问题:
为什么我会收到此错误以及如何解决?
答案 0 :(得分:4)
在@ jmw5598的帮助下,他引用了我的路由器问题/错误。
延迟加载模块的默认空位置存在问题。
Here is a working solution for the problem .
要理解的关键是懒惰模块不应该有空的根路径