Я пытаюсь сравнить определенную role
(в моем app.ts
) и восстановленную роль из WebServer
.Но когда я не вошел в систему, у меня проблема со значениями сравнения:
Вот что я делаю:
export class RoutingAuthorizeStep {
public readonly userIdentity: UserIdentityModel;
constructor (userIdentity: UserIdentityModel) {
this.userIdentity = userIdentity;}
run(navigationInstruction: NavigationInstruction, next: Next) : Promise<any> {
let requiredRoles = navigationInstruction.getAllInstructions()
.map(i => i.config.settings.roles)[0] as string[];
//requiredRoles is example 'superUser'
let isUserInRole = requiredRoles?
requiredRoles.some(r => r === this.userIdentity.role) : true;
}
}
Когда я зарегистрировался в отладке: console.log(this.userIdentity.role);
У меня есть это сообщение:
aurelia-logging-console.js?dc89:45 ERROR [app-router] TypeError:
Cannot read property 'role' of undefined
at RoutingAuthorizeStep.run (routing-authorize-step.ts?008f:30)
at next (aurelia-router.js?e32b:433)