CanActivateChild
interface
Interface that a class can implement to be a guard deciding if a child route can be activated.
If all guards return true
, navigation continues. If any guard returns false
,
navigation is cancelled. If any guard returns a UrlTree
, current navigation
is cancelled and a new navigation begins to the UrlTree
returned from the guard.
API
Description
interface CanActivateChild { canActivateChild(childRoute: ActivatedRouteSnapshot, state: RouterStateSnapshot): MaybeAsync<GuardResult>;}}
Jump to details