【问题标题】:LoggedInOutlet angular2 authentication - Router v3.0.0-alpha8 - Where is ComponentInstruction?LoggedInOutlet angular2 authentication - Router v3.0.0-alpha8 - ComponentInstruction 在哪里?
【发布时间】:2016-11-02 19:45:12
【问题描述】:

我正在使用这样的代码来扩展 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);
  }
}

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

【问题讨论】:

    标签: authentication angular angular2-routing angular2-router angular2-router3


    【解决方案1】:

    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] }
    

    我希望这会有所帮助!

    【讨论】:

    【解决方案2】:

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

    【讨论】:

      猜你喜欢
      • 2015-07-28
      • 2018-02-11
      • 2018-03-16
      • 2018-10-13
      • 1970-01-01
      • 2019-02-20
      • 2018-04-25
      • 2020-02-12
      • 2018-01-10
      相关资源
      最近更新 更多