I am trying to navigate to a another page by clicking a button but it fails to work. What could be the problem. I am now learning angular 2 and it\'s a bit tough for me now.
you can change
this.router.routeReuseStrategy.shouldReuseRoute = () => false; at the component level in constructor like bellow
this.router.routeReuseStrategy.shouldReuseRoute = () => false;
at the component level in constructor like bellow
constructor(private router: Router) { this.router.routeReuseStrategy.shouldReuseRoute = () => false; }