我的app.routing模块包含以下路线
const routes: Routes = [
{
path: '',
component: Path1Component,
canActivate: [AuthenticatedGuard],
children: [
{ path: '', component: Path1ChildComponent }
]}];
当应用程序加载时,它会直接转到path1模块,而不是defaultPath。 path1路由模块具有此配置
{{1}}
我该如何解决这个问题?
答案 0 :(得分:0)
我将Path1模块导入到app.module中,这在某种程度上导致了问题。当我从app.module中删除它时,路由按预期工作。