Angular 2 router.navigate
问题 I'm trying to navigate to a route in Angular 2 with a mix of route and query parameters. Here is an example route where the route is the last part of the path: { path: ':foo/:bar/:baz/page', component: AComponent } Attempting to link using the array like so: this.router.navigate(['foo-content', 'bar-contents', 'baz-content', 'page'], this.params.queryParams) I'm not getting any errors and from what I can understand this should work. The Angular 2 docs (at the moment) have the following as an