当您查看 angular 2 hero 示例时:
http://plnkr.co/edit/Zd0qmavTzedtimImAgfQ?p=preview
有危机中心和英雄链接
两者都呈现事物列表,或者您可以通过 id 编辑事物。
但是 RoutesConfig 除了
redirectTo: '/crisis-center',
CrisisCenter 有一个路由子属性:
children: [
{
path: 'admin',
component: CrisisAdminComponent,
canActivate: [AuthGuard]
},
{
path: 'edit/:id',
component: CrisisDetailComponent,
canDeactivate: [CanDeactivateGuard]
},
{
path: '',
component: CrisisListComponent
}
]
当我在 angular 2 网站上搜索时:https ://angular.io/docs/ts/latest/glossary.html#!#stq=router&stp=1
对于“儿童”,我不知道儿童财产的用途。
我看大侠RoutesConfig的时候:
export const HeroesRoutes: RouterConfig = [
{ path: 'heroes', component: HeroListComponent },
{ path: 'hero/:id', component: HeroDetailComponent }
];
没有儿童财产。我也可以在根页面上加载英雄: http ://plnkr.co/edit/Zd0qmavTzedtimImAgfQ?p=preview
那么,儿童财产有什么用呢?