Angular2入门系列(五)———— 路由参数设置
路由设置:
{
path: '',
component: CarProFile,
children: [
{
path: 'add',
component: CarAdd,
}
]
}
路由跳转:
this.router.navigate([‘add’, { id: this.userid, foo: ‘foo’ }], { relativeTo: this.route });
然后浏览器的url 是如许的,参数很明显。。。
![图片上传中…]
处置惩罚要领 skipLocationChange
this.router.navigate(['add', { id: this.userid, foo: 'foo' }], { relativeTo: this.route , skipLocationChange: true });
注重:用此要领处置惩罚后,会致使页面的退却按钮失效。