In my Angular 2 app I want to navigate to another URL using this.router.navigate(['/todo']);
It works but Angular adds a question mark after the URL (like this: http://localhost:4200/todo?
) which makes the browser reload the page. However, I don't want the browser to refresh the page.
How can I fix this issue?