我将使用typescript在angular2中启动一个新项目,但路由仍存在一些问题:
我有这样的实体:
现在我正在尝试像这样编写路由:
@RouteConfig([ <br>
{path: '/', component: EntityListComponent}, <br>
{path: '/:id/...', name: 'Entity', component: EntityEditComponent}, <br>
{path: '/:id/children', name: 'ChildList', component: ChildListComponent} <br>
{path: '/:id/children/:childnumber', name: 'Child', component: ChildEditComponent}<br>
])
的
当然,这不起作用: - (。
如何从实体到子节点获取参数,或者如何准确配置此路由?
谢谢大家,我希望你能理解我的问题。