How to keep query string parameters in URL when accessing a route of an Angular 2 app?
I have an Angular 2 test app running the latest alpha (37). There are just three routes, that look like this: @RouteConfig([ { path: '/', component: Home, as: 'home' }, { path: '/errors', component: Errors, as: 'errors' }, { path: '/about', component: About, as: 'about' } ]) I can access the routes, and when I place query string params in the URL I can read them just fine. However, a few instants after I read the parameters, I noticed that the route loads fine and the URL refreshes, removing the query string parameters. In other words, accessing this route: http://localhost:5555/errors?test