我有一个带有主路由器插座和辅助插座的页面。我的目标是将所有用户路由到内容组件,而只有经过身份验证的用户也会路由到辅助插座中的菜单组件。
给出以下路线,如果守卫返回真,两个出口都正确路由,但如果守卫返回,则路线都没有完成。
{ path: 'content', children:[
{ path: '', component: ContentComponent},
{ path: '', component: UserMenuComponent, canActivate: [AuthGuard],outlet: 'menu'}
]},
是否可以通过防护装置仅取消辅助插座的路线但允许主插座正确布线的方式进行设置?