1

应用程序的路线是:

{path: 'profile', component: ProfilePageComponent, outlet: 'bodyOutlet'
, children: [
{path: 'profile-personal-information', component: ProfilePersonalInformationComponent, outlet: 'profileOutlet'},
{path: 'profile-license-details', component: ProfileLicenseDetailsComponent, outlet: 'profileOutlet'}

] }

所以,我可以导航到 profilePageComponent:

this.router.navigate([{ outlets: { bodyOutlet: ['profile'] } }]);

但是从 ProfilePageComponent 导航到 profileOutlet 不能使用以下代码:

this.router.navigate([{ outlets:  { 'bodyOutlet': [ 'profileOutlet', 'profile-personal-information']}}]);

或者

this.router.navigate([{outlets: {profileOutlet: ['profile-personal-information']}}]);

所以,我需要帮助来从一个命名的路由器插座导航到另一个命名的路由器插座

4

0 回答 0