I have worked with routerLink and it works very well :
<a routerLink="inscription" class="btn btn-default">Inscription</a>
<a routerLink="login" class="btn btn-default">Se connecter</a>
I am trying now to deal with routerLink
inside the typescript file. Exactly, when i click on a button, i call a function inside this function i want to call routerLink
how could i do it? and if is calling it will reload the page or it will work exactly the same as the routerLink
above ?
In code, you use .navigate instead:
this.router.navigate(['/products']);
You pass it the same parameter as you do the routerLink
.
try this
<a javascript:void(0) routerLink="inscription" class="btn btn-default">Inscription</a>
Please note that though the URL in the browser is not case sensitive, Router.navigate is.
Correct: this.router.navigate(['/products']);
.
Incorrect: this.router.navigate(['/Products']);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With