嗨,我需要检测我的溃败是否有 canActivate,但找不到如何做到这一点。
服务`
canActivate() {
this.userLogedin = localStorage.getItem('AUTHENTICATION');
//I need check here if rout has canActivate
if (this.userLogedin === 'false') {
this.router.navigateByUrl('');
return false;
}else {
return true;
}
}