我正在尝试使用 jwt和angular 作为前端的快速后端构建应用程序。
问题是我需要识别登录到应用程序的用户,以将他们重定向到各自的面板。每个用户的类型在数据库中的一个字段中找到(如果是普通用户和管理员则为空)。
问题是,我应该实施什么来识别用户?
这是登录,应在其中识别用户。
login(){
const user ={
Email: this.UsuarioForm.get('Email')?.value,
Password : this.UsuarioForm.get('Password')?.value
}
if(this.UsuarioForm.valid){
this.userService.login(user).subscribe((data)=>{
this.authService.setLocalStorage(data);
console.log(data);
},
(error) =>{
console.log(error);
},
()=>{
console.log('done!');
this.router.navigate(['protected']);
}
);
}
}
这是他们目前所走的“受保护”路线。在这里,我能够通过服务器的响应状态来识别用户,但我不知道这是否是最好的方法。
ngOnInit(): void {
this.usersService.protected().subscribe((data)=>{
this.message = data.message;
console.log(data);
},
(error) =>{
if(error.status === 403){
this.message= 'you are not authorized'
}
if(error.status === 200){
this.message = 'The user is registered'
console.log(this.authService.getExpiration());
}
if(error.status === 201){
this.message= 'The user is registered and is admin'
console.log(this.authService.getExpiration());
}
console.log(error);
},
() =>{
console.log('http request done!')
}
);
}