作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我在 RouteConfig 中定义了 routeParam:
{ path: '/user/:id', name: 'User', component: User }
在我的代码中,我调用了路由器的导航方法:
userSelected(userid) {
this._router.navigate(['User', { id: userid }]);
}
编译器告诉我以下内容:
Argument of type '(string | { id: any; })[]' is not assignable to parameter of type 'string.
如何键入参数 id
,以便编译器将其检测为数字?
最佳答案
我会直接使用 this._router.navigateByUrl('user/' + userid );
关于typescript - 如何在 Angular2 中输入 routeParams?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35902522/
我是一名优秀的程序员,十分优秀!