将路径参数作为路径参数传递,如
id
但如何将const appRoutes: Routes = [
{
path: 'servers/:id',
component: ServerDetailComponent
}]
export const routing = RouterModule.forRoot(appRoutes);
作为:id
来做同样的事情呢?这样我就可以导航服务器对象,比如string
,而不是name
,例如id
答案 0 :(得分:1)
您可以使用与数字相同的方式发送字符串。它在字符串或数字之间没有区别。
path: 'servers/:name',