2

我正在使用这样的代码来扩展 RouterOutlet 并创建应用程序范围的身份验证和路由保护

import {Directive, Attribute, ViewContainerRef, DynamicComponentLoader} from '@angular/core';
import {Router, ComponentInstruction} from '@angular/router';
import {Router} from '@angular/router';
import {RouterOutletMap} from '@angular/router/src/router_outlet_map';
import {RouterOutlet} from '@angular/router/src/directives/router_outlet';

import {Authentication} from '../common/authentication.service';

@Directive({
  selector: 'router-outlet'
})
export class LoggedInRouterOutlet extends RouterOutlet {
  publicRoutes:any;
  isAuthenticated:boolean;
  //private router: any;

  constructor(public _elementRef: ElementRef, public _loader: DynamicComponentLoader,
              public _parentRouter: Router, @Attribute('name') nameAttr: string, public authService:Authentication) {
    super(_elementRef, _loader, _parentRouter, nameAttr);
    this.isAuthenticated = authService.isLoggedIn();


    //this.router = _parentRouter;
    /**
     * DEFINE PUBLIC ROUTES
     *
     * The Boolean following each route below denotes whether the route requires authentication to view.
     *
     * Format: key/value pair
     * - key is the /route url "/login", "/signup", etc
     * - value is a boolean true/false
     *    `true` means it's a publicly available route. No authentication required
     *    `false` means it's a protected route which is hidden until user is authenticated
     *
     */
    this.publicRoutes = {
      'login': true,
      'signup': true,
      '404': true
    };
  } // end constructor

  routeIsActive(routePath:string) {
    return this.router.url == routePath;
  }

  activate(instruction: ComponentInstruction) {
    // let url = instruction.urlPath;
    let url = this.router.url;
    // If the url doesn't match publicRoutes and they are not authenticated...
    if (!this.publicRoutes[url] && !this.isAuthenticated) {
      // todo: redirect to Login, may be there a better way?
      this.router.navigateByUrl('/login');
    }
    return super.activate(instruction);
  }
}

问题是 ComponentInstruction 在新的 v3.0.0-alpha8 路由器中不存在,并且超级方法签名已更改。如何更新它以在新路由器中工作?我找不到任何解释更改的文档。

4

2 回答 2

3

ComponentInstruction已被弃用。在当前 RC4 版本的 Angular2 中,此类已被列在 reouter-deprecated 下。随着 RC5 的到来,这个包将被删除。

RouterOutlet 随着时间的推移发生了很大变化,为了使您的类 LoggedInRouterOultet 工作,您必须使用CanActivate接口。

你可以这样做:

有一个像 LoggedInActivator 这样的可注入服务,如下所示:

import { Injectable } from '@angular/core';
import { Router, CanActivate } from '@angular/router';
import { LogInService } from './login.service';

@Injectable()
export class LoggedInActivator implements CanActivate {
  constructor(private loginService: LogInService) {}

  canActivate() {
    return this.loginService.isLoggedIn();
  }
}

在定义路由时添加 canActivate 并将其映射到组件上的 LoggedInActivator:

{ path: 'home', component: HomeComponent, canActivate: [LoggedInActivator] }

我希望这有帮助!

于 2016-07-21T07:30:18.320 回答
0

因为在新路由器中,它使用CanActivate

于 2016-06-30T16:15:37.877 回答