【发布时间】:2017-07-31 15:37:01
【问题描述】:
我有一个显示联系人列表的应用程序,可以选择单个联系人并查看其详细信息。联系人详细信息页面有几个选项卡,用于显示有关联系人的子信息(个人资料、接触点和联系信息)。以下是相关网址:
要查看联系人列表:
查看给定联系人的所有接触点
以下是构建联系人列表路由以及联系人详细信息延迟加载路由的路由数据:
export const routing: ModuleWithProviders = RouterModule.forChild(
[
{
path: 'list',
component: PageContactListComponent
},
//... other routes here...
{
path: ':id',
component: PageContactDetailComponent,
children:
[
//... other routes here...
//LAZY LOADED:
{ path: 'touch-points', loadChildren: './detail/components/touch-points/touch-points.module#TouchPointModule' } ]
}
]);
这是接触点模块的路由数据。
export const routing:ModuleWithProviders = RouterModule.forChild(
[
{
path: '',
pathMatch: 'full',
redirectTo: 'list'
},
{
path: 'list',
component: TouchPointListComponent
}
]);
当我导航到http://localhost:4200/contact/list 时,Angular 会尝试加载与http://localhost:4200/contact/84/touch-points/list 关联的组件。似乎这样做是因为“列表”也在延迟加载的模块中定义。如果我在接触点模块的路由数据中将“列表”更改为“历史”,则http://localhost:4200/contact/list 会加载相应的组件。
Angular 4 路由器应该能够区分这些路由:(http://localhost:4200/contact/list, http://localhost:4200/contact/84/touch-points/list) 并加载适当的组件。
我需要对我的路由定义进行哪些更改以方便在同一功能区域(即联系人)内的多个路由中使用“列表”?
--- 更新 08/01/2017 ---
我创建了以下演示此问题的 plunker:
点击 plunker 中的“联系人列表”链接会加载接触点列表,而不是加载联系人列表。 Touch Points 是 Contact 域中的延迟加载模块。
应该发生的是导航到联系人列表。点击联系人应该会转到联系人详细信息页面,您可以点击接触点链接查看所选联系人的接触点列表。
联系人模块的列表路由 (/contact/list) 使用“列表”作为其路由。接触点列表路由需要为/contact/:id/touch-points/list。因为list 用于两个路由,所以定义的最后一个路由会覆盖第一个路由,随后在导航到/contact/list 路由时会加载接触点列表组件。
谢谢。
【问题讨论】:
-
当你这样说:“当我导航到localhost:4200/contact/list”时,你到底是什么意思?你是在地址栏中输入这个吗?还是使用 RouterLink 或 .navigate()?
-
在浏览器中导航到这些不同的 URL。
-
那么,在地址栏中输入它们?那么这听起来像一个错误。你可以在这里查看是否已经被举报:github.com/angular/angular/issues
-
您是否在 Angular 存储库中向团队提出了这个问题?有什么吸引力吗?
-
我还没有机会向 Angular Repo 提交错误报告
标签: angular angular-routing angular-router