gpt4 book ai didi

angular - 获取当前模块的所有路由 - Angular 2

转载 作者:行者123 更新时间:2023-12-02 16:55:37 24 4
gpt4 key购买 nike

您好,我在我的示例中使用延迟加载。

export const appRoutes: Routes = [

{ path: 'comp1', loadChildren: 'app/components/comp1/comp1.module#comp1Module' },
{ path: 'comp2', loadChildren: 'app/components/comp2/comp2.module#comp2Module' },
. . .

]

comp1Module 具有以下子路由

export const comp1Routes: Routes = [
{ path: 'comp1/default', component: DefaultComponent },
];

在路由时,我需要从模块获取所有路由。

例如:我想从模块 comp1 获取所有路由

最佳答案

您可以通过注入(inject) Router 并拉取配置来使用 router.config。

constructor(private router: Router){
console.log(this.router.config);
}

关于angular - 获取当前模块的所有路由 - Angular 2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43907340/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com