Answers for "this.router.navigate by component angular"

0

router.navigate angular

import { Router } from '@angular/router';

constructor(
    private router:Router
  ) { }

redirectFunction(){
      this.router.navigate(['hello/redirect/pageURL'],{queryParams:{id:1234,name:"ash"}});
}
Posted by: Guest on September-08-2021
6

angular router navigate

// Here’s a basic example using the navigate method:

goPlaces() {
  this.router.navigate(['/', 'page-name']);
}

/*
I hope it will help you.
Namaste
*/
Posted by: Guest on May-20-2020

Code answers related to "this.router.navigate by component angular"

Code answers related to "Javascript"

Browse Popular Code Answers by Language