Friday, July 24, 2020

Navigation in ionic or redirect in ionic

1.  Redirect as return View in mvc code in .ts
     this.router.navigateByUrl("/rec-view/"+d.Srno,{ skipLocationChange:true });

2. Redirect as like return redirectToAction() or return Redirect() in mvc
this.router.navigateByUrl("/rec-view/"+d.Srno,{ skipLocationChange:false });

3. Other redirect
this.router.navigate(['/rec-view/'+d.Srno]);


No comments:

Post a Comment

Navigation in ionic or redirect in ionic

1.  Redirect as return View in mvc code in .ts       this .router.navigateByUrl( "/rec-view/" +d.Srno,{ skipLocationChange:tru e...