我想创建角度为4的网址
例如:
http://localhost:4200/#/page/page2/6/abc/1234
但是现在我正在使用这样的查询参数:
this.router.navigate(['page/page2/' + row.id],{ queryParams: {'name': row.name,'phnnumber': row.phnnumber}});
答案 0 :(得分:0)
您必须创建这样的路线:
{path : "page/page2/:rowId/:name/:phoneNumber" , component : "yourComponent" }
。
稍后您可以导航到路线:
this.router.navigate(['page/page2/' + row.id + "/" + row.name + "/" + row.phnnumber]);