typescript auth.guard.ts

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript auth.guard.ts相关的知识,希望对你有一定的参考价值。

@Injectable()
export class AuthGuard {

  constructor( private authService : AuthService, private router : Router ) {
  }

  canActivate( route : ActivatedRouteSnapshot, state : RouterStateSnapshot ) {
    if(this.authService.isLoggedIn()) return true;
    // else navigate to login
  }
}

以上是关于typescript auth.guard.ts的主要内容,如果未能解决你的问题,请参考以下文章

使用 Guards (Roles, JWT) 获取用户数据

TypeScript入门学习之路

typescript TypeScript Snippets #typescript

TypeScript入门五:TypeScript的接口

TypeScript系列教程--初探TypeScript

TypeScript入门三:TypeScript函数类型