在调用checkPermissions()方法之前,我需要等到可观察到的getPermissions()完成。但是对于我的一生,我无法接受...
我也尝试过使用async / await,但这似乎也不适合我?
我需要拥有我的权限,然后才能检查它们。有想法吗?
如果有更好的方法,我会全力以赴。
非常感谢。
import { Injectable } from '@angular/core';
import { Router, CanActivate, ActivatedRouteSnapshot } from '@angular/router';
import { AuthService } from './auth.service';
@Injectable()
export class RoleGuardService implements CanActivate {
constructor(public auth: AuthService,public router: Router) { }
canActivate(route: ActivatedRouteSnapshot): boolean {
//This will be passed from the route config, on the data property
const expectedRole = route.data.expectedRole;
var hasPerm = this.loadAndCheckPermissions(expectedRole);
console.log('done! ' + hasPerm);
return hasPerm;
}
loadAndCheckPermissions(expectedRole) {
var hasPermission = false;
localStorage.clear();
var myPermissions = localStorage.getItem('user-permissions');
if (myPermissions === null) {
console.log("PERMISSIONS from Server!");
//You can't wait for an Observable or Promise to complete.
//You can only subscribe to it to get notified when it completes or emits an event.
this.auth.getPermissions()
.subscribe(res => {
localStorage.setItem('user-permissions', JSON.stringify(res.body));
//Check permissions now
//hasPermission = this.checkPermissions(expectedRole);
});
} else {
hasPermission = this.checkPermissions(expectedRole);
}
console.log('loadAndCheckPermissions ' + hasPermission);
return hasPermission;
}
//Check a permission here
checkPermissions(expectedRole) {
return this.auth.checkPermission(expectedRole);
}
}
答案 0 :(得分:1)
您可以在canActivate方法中返回一个Observable,如下所示:
import { Injectable } from '@angular/core';
import { Router, CanActivate, ActivatedRouteSnapshot } from '@angular/router';
import { AuthService } from './auth.service';
@Injectable()
export class RoleGuardService implements CanActivate {
constructor(
public auth: AuthService,
public router: Router
) { }
canActivate(route: ActivatedRouteSnapshot): Observable<boolean> {
//This will be passed from the route config, on the data property
const expectedRole = route.data.expectedRole;
var hasPerm = this.loadAndCheckPermissions(expectedRole);
console.log('done! ' + hasPerm);
return hasPerm;
}
loadAndCheckPermissions(expectedRole): Observable<boolean> {
var hasPermission: Observable<boolean> = Observable.of(false);
//clear
localStorage.clear();
//getter
var myPermissions = localStorage.getItem('user-permissions');
//
if (myPermissions === null) {
console.log("PERMISSIONS from Server!");
hasPermission = this.auth.getPermissions()
.map(res => {
localStorage.setItem('user-permissions', JSON.stringify(res.body));
console.log('return from async');
// Check permissions RETURNING A BOOLEAN
return this.checkPermissions(expectedRole);
});
}
else {
hasPermission = Obsersable.of(this.checkPermissions(expectedRole));
}
// console.log('loadAndCheckPermissions ' + hasPermission);
return hasPermission;
}
//Check a permission here
checkPermissions(expectedRole) {
return this.auth.checkPermission(expectedRole);
}
}
根据Angular的文档,路由防护可以返回Observable或Promise,并且路由器将等待Observable解析为true或false。