I\'m trying to figure out how to use the Angular2 router navigation (router 3.0.0-alpha.7) with query parameters.
I can easily navigate to a route with a queryParam
You can simply use preserveQueryParams: false parameter to ignore query params
preserveQueryParams: false
this.router.navigate(['target'], {preserveQueryParams: false});