Answers for "this.router.navigate 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
16

angular navigate using component

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

export class Component{ 				// Example component.. 
	constructor(private route:Router){} 
  
  	go(){
		this.route.navigate(['/page']); // navigate to other page
	}
}
Posted by: Guest on May-08-2020
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
0

this.router.navigate

<a [routerLink]="['/', 'red-pill', {x: 'white-rabbit'}, 'neo']">
  Param!
</a>
Posted by: Guest on November-02-2020

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language