如果我有
const routes: Routes = [
{
path: 'home', component: SearchComponent, children: [
{ path: 'view', component: ClientNewsFeedComponent, outlet: 'news-feed' },
{ path: 'view/:clientId', component: ClientDetailsContainerComponent, outlet: 'client' }
]
}
];
我的网址看起来像
http://localhost/home;searchClient=test;/(news-feed:view)
在我的一个组件中,我可以点击一个用户卡打开一个对话框,该对话框现在有了网址
http://localhost/home;searchClient=test;/(news-feed:view//client:view/123)
运作良好。但是,如何从news-feed
插座中打开相同的网址。如果我有:
点击
然后我得到了一个
的网址 http://localhost/home;searchClient=test;/(news-feed:view)(client:view/1)
请注意,现在client
出口是news-feed
出口的出口,而不是它们处于同一水平