在 canActivate 上结束 return 语句的问题
Problem of ending return statement on canActivate
我在使用 CanActivate 方法时遇到问题:出现错误 ts2366“函数缺少结束 return 语句并且 return 类型不包括未定义”。
按照我的代码:
import { ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot, UrlTree } from '@angular/router';
import { Observable } from 'rxjs';
import { AuthService } from './auth.service';
import { Injectable } from '@angular/core';
@Injectable()
export class AuthGuard implements CanActivate {
constructor(private authService: AuthService,
private router: Router) { }
canActivate(
route: ActivatedRouteSnapshot,
state: RouterStateSnapshot): Observable<boolean> | Promise<boolean> | boolean {
if (this.authService.isAuth) {
return true;
} else {
this.router.navigate(['/auth']);
}
}
}
我尝试添加'| undefined' 在 boolean 之后,但另一个错误告诉我它与 CanActivate 不兼容。
你有解决办法吗?
预先感谢您的帮助。
您应该 return 来自 canActivate
的 boolean
或 UrlTree
。如果您 return UrlTree
它将为您处理导航,因此您不需要自己调用 this.router.navigate(参见 https://angular.io/api/router/CanActivate)
您的代码可能如下所示:
import { ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot, UrlTree } from '@angular/router';
import { Observable } from 'rxjs';
import { AuthService } from './auth.service';
import { Injectable } from '@angular/core';
@Injectable()
export class AuthGuard implements CanActivate {
constructor(private authService: AuthService,
private router: Router) { }
canActivate(
route: ActivatedRouteSnapshot,
state: RouterStateSnapshot): Observable<boolean> | Promise<boolean> | boolean {
if (this.authService.isAuth) {
return true;
} else {
return this.router.parseUrl('/auth');
}
}
}
我在使用 CanActivate 方法时遇到问题:出现错误 ts2366“函数缺少结束 return 语句并且 return 类型不包括未定义”。
按照我的代码:
import { ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot, UrlTree } from '@angular/router';
import { Observable } from 'rxjs';
import { AuthService } from './auth.service';
import { Injectable } from '@angular/core';
@Injectable()
export class AuthGuard implements CanActivate {
constructor(private authService: AuthService,
private router: Router) { }
canActivate(
route: ActivatedRouteSnapshot,
state: RouterStateSnapshot): Observable<boolean> | Promise<boolean> | boolean {
if (this.authService.isAuth) {
return true;
} else {
this.router.navigate(['/auth']);
}
}
}
我尝试添加'| undefined' 在 boolean 之后,但另一个错误告诉我它与 CanActivate 不兼容。
你有解决办法吗?
预先感谢您的帮助。
您应该 return 来自 canActivate
的 boolean
或 UrlTree
。如果您 return UrlTree
它将为您处理导航,因此您不需要自己调用 this.router.navigate(参见 https://angular.io/api/router/CanActivate)
您的代码可能如下所示:
import { ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot, UrlTree } from '@angular/router';
import { Observable } from 'rxjs';
import { AuthService } from './auth.service';
import { Injectable } from '@angular/core';
@Injectable()
export class AuthGuard implements CanActivate {
constructor(private authService: AuthService,
private router: Router) { }
canActivate(
route: ActivatedRouteSnapshot,
state: RouterStateSnapshot): Observable<boolean> | Promise<boolean> | boolean {
if (this.authService.isAuth) {
return true;
} else {
return this.router.parseUrl('/auth');
}
}
}