Angular2限制所有路线

前端之家收集整理的这篇文章主要介绍了Angular2限制所有路线前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Helloo,

我创造了一个警卫:

import { Injectable } from '@angular/core';
import { Router,CanActivate } from '@angular/router';

@Injectable()
export class AuthGuard implements CanActivate {

    constructor(private router: Router) { 
    }

    canActivate() {

        if (localStorage.getItem('currentUser')) {
            // logged in so return true
            return true;
        }

        // not logged in so redirect to login page
        this.router.navigate(['/login']);
        return false;
    }
}

并且有多个模块,里面有多个路由.如何使用这个警卫轻松限制我的应用程序中的每条路线?

最好的祝福

设置一个带防护的空路线,并使其余的路线成为那个路线的孩子:
RouterModule.forRoot([
  { path: '',canActivate: [AuthGuard],children: [...restOfYourRoutes] }])

猜你在找的Angularjs相关文章