import { Router } from '@angular/router'; constructor( private router:Router ) { } redirectFunction(){ this.router.navigate(['hello/redirect/pageURL'],{queryParams:{id:1234,name:"ash"}}); }