您好我正在尝试延迟加载“详细模块”,同时还通过URL发送参数。
这是我的延迟加载路线:
{
path: 'venue/:name/:id',
loadChildren: () => System.import('../containers/activity-detail/activity-detail.module').then((file: any) => {
return file.default;
})
},
我想路由到这个'activity-detail.module',然后使用“:name”和“id:”参数加载详细信息。
加载的模块有自己的路径文件。
export const VenueDetailRoutes: Route[] = [
{
path: '',
redirectTo: 'venue/:name/:id',
pathMatch: 'full'
},
{
path: 'venue/:name/:id',
component: VenueDetailComponent,
data: {
shouldDetach: true, // Route will be resused. See CustomResuseStrategy.
title: null
}
},
{
path: '**',
redirectTo: '/'
}
];
似乎没有第一个默认对象没有任何作用。我收到错误:
{
path: '',
redirectTo: 'venue/:name/:id',
pathMatch: 'full'
},
TypeError: Cannot read property 'path' of null
使用默认对象,我收到错误:
Error: Cannot redirect to 'venue/:name/:id'. Cannot find ':name'.
非常感谢任何帮助。
答案 0 :(得分:11)
我认为这不起作用:
{
path: '',
redirectTo: 'venue/:name/:id',
pathMatch: 'full'
},
它无法匹配"空"带参数的路径的路径。
延迟加载路由的语法比我的复杂得多。我看起来像这样:
{
path: 'movies',
loadChildren: './movies/movie.module#MovieModule'
},
请注意"父母"路由('电影'在这个例子中)是在延迟加载的路由上定义的,而不是在加载的模块路由中重复。
例如:
RouterModule.forChild([
{ path: '', component: MovieListComponent },
{ path: 'search', component: MovieSearchComponent },
{ path: ':id', component: MovieDetailComponent }
])
我认为在您的情况下,加载的模块的路径应如下所示:
export const VenueDetailRoutes: Route[] = [
{
path: ':name/:id',
component: VenueDetailComponent,
data: {
shouldDetach: true, // Route will be resused. See CustomResuseStrategy.
title: null
}
}
];
(尽管您可能需要考虑在基本路线工作之前不要使用自定义重用策略。)