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 });
注意:用此方法處理後,會導致頁面的後退按鈕失效。