我用angular2创建了一个应用程序。对于内部化和SEO目的,我的应用程序的路线应该改变。我的问题是如何将多条路线映射到一个组件,例如路线:
www.test.at/GERMANNAME/Vienna
www.test.at/ENGLISHNAME/Vienna
可以映射到一个组件。如何使用angular2路由器实现这一目标?到目前为止我得到的是以下代码:
export const testRoutes: Routes = [
{
path: 'ENGLISHNAME', <-- How can i add the GERMANNAME route to this path without copy/pasting the whole path
component: TestComponent,
children: [
{
path: ':city',
component: TestListComponent
}
]
}
];