Angular4 routing:路径中的动态字符串参数

时间:2017-05-15 14:54:41

标签: angular angular4-router

将路径参数作为路径参数传递,如

id

但如何将const appRoutes: Routes = [ { path: 'servers/:id', component: ServerDetailComponent }] export const routing = RouterModule.forRoot(appRoutes); 作为:id来做同样的事情呢?这样我就可以导航服务器对象,比如string,而不是name,例如id

1 个答案:

答案 0 :(得分:1)

您可以使用与数字相同的方式发送字符串。它在字符串或数字之间没有区别。

path: 'servers/:name',