AuthGuard 在 nebular 中总是 false
AuthGuard always false in nebular
我使用 ngx admin 创建使用 nebular 的管理面板,我按照此文档添加 authGard:
docs
这是自定义登录:
docs2
一切正常,我收到成功消息:
但我在 autogard 中得到了 false:
我使用的代码:
@NgModule({
declarations: [
AppComponent,
],
providers: [
AuthGuard,
],
imports: [
***
],
bootstrap: [AppComponent],
})
export class AppModule {
}
//**********
@Injectable()
export class AuthGuard implements CanActivate {
constructor(private authService: NbAuthService, private router: Router) {
}
canActivate() {
console.log(this.authService.isAuthenticated());
return this.authService.isAuthenticated()
.pipe(
tap(authenticated => {
if (!authenticated) {
console.log(authenticated);
this.router.navigate(['auth/login']);
}
}),
);
}
}
//**********
const routes: Routes = [
{
path: 'pages',
canActivate: [AuthGuard],
loadChildren: () => import('./pages/pages.module')
.then(m => m.PagesModule),
},
{
path: 'auth',
loadChildren: () => import('./auth/auth.module').then(m => m.NgxAuthModule),
},
{ path: '', redirectTo: 'pages', pathMatch: 'full' },
{ path: '**', redirectTo: 'pages' },
];
问题已解决。
文档说响应应该是这样的:
{
data: {
token: 'some-jwt-token'
}
}
我的回复是:
{
data: {
access_token: 'some-jwt-token'
}
}
并且在文档中写入我们可以将(令牌)更改为其他类似的东西:
token: {
key: 'access_token', // this parameter tells where to look for the token
}
但这不是真的,我们应该在 NbAuthModule.forRoot 中使用它:
token: {
key: 'data.access_token',
}
我使用 ngx admin 创建使用 nebular 的管理面板,我按照此文档添加 authGard:
docs
这是自定义登录:
docs2
一切正常,我收到成功消息:
但我在 autogard 中得到了 false:
我使用的代码:
@NgModule({
declarations: [
AppComponent,
],
providers: [
AuthGuard,
],
imports: [
***
],
bootstrap: [AppComponent],
})
export class AppModule {
}
//**********
@Injectable()
export class AuthGuard implements CanActivate {
constructor(private authService: NbAuthService, private router: Router) {
}
canActivate() {
console.log(this.authService.isAuthenticated());
return this.authService.isAuthenticated()
.pipe(
tap(authenticated => {
if (!authenticated) {
console.log(authenticated);
this.router.navigate(['auth/login']);
}
}),
);
}
}
//**********
const routes: Routes = [
{
path: 'pages',
canActivate: [AuthGuard],
loadChildren: () => import('./pages/pages.module')
.then(m => m.PagesModule),
},
{
path: 'auth',
loadChildren: () => import('./auth/auth.module').then(m => m.NgxAuthModule),
},
{ path: '', redirectTo: 'pages', pathMatch: 'full' },
{ path: '**', redirectTo: 'pages' },
];
问题已解决。
文档说响应应该是这样的:
{
data: {
token: 'some-jwt-token'
}
}
我的回复是:
{
data: {
access_token: 'some-jwt-token'
}
}
并且在文档中写入我们可以将(令牌)更改为其他类似的东西:
token: {
key: 'access_token', // this parameter tells where to look for the token
}
但这不是真的,我们应该在 NbAuthModule.forRoot 中使用它:
token: {
key: 'data.access_token',
}