Is there a smart way to go back last page in Angular 2?
Something like
this._router.navigate(LASTPAGE);
For example, page C has a Go Back button,
Page A -> Page C, click it, back to page A.
Page …
Angular 2 - How to navigate to another route using this.router.parent.navigate('/about').
It doesnt seem to work.
I tried location.go("/about"); as that didnt work.
Basically once a user has logged in I want to redirect …
What is the method for redirecting the user to a completely external URL in Angular 2. For example, if I need to redirect the user to an OAuth2 server in order to authenticate, how would I do that?
Location.go(), Router.…