我有一个带角度 using tabs style 的离子应用程序,然后将我的Tabs URL置于身份验证之下,此后,在用户登录并打开应用程序后,重定向功能无法正常工作。
tabs/groups
变得像tabs/tabs/groups
is logged in
和重新打开应用时,他们将重定向到localhost/tabs
而不是localhost/tabs/tabs/groups
注意:如果我的第一个问题得到解决(多余的选项卡已删除),则当前重定向将按预期工作,因为
tabs
的默认路径为tabs/groups
AuthGuard
export class AuthGuardGuard implements CanActivate {
constructor(
private router: Router,
public auth: AuthService
) { }
canActivate(
next: ActivatedRouteSnapshot,
state: RouterStateSnapshot): Observable<boolean> | Promise<boolean> | boolean {
const currentUser = this.auth.isLoggedIn;
if (currentUser) {
return true;
}
this.router.navigate(['/login']);
return false;
}
}
app-routing.module.ts
import { NgModule } from '@angular/core';
import { PreloadAllModules, RouterModule, Routes } from '@angular/router';
import { AuthGuardGuard } from '../app/Guards/auth-guard.guard';
const routes: Routes = [
{
path: '',
redirectTo: 'tabs',
pathMatch: 'full'
},
{
path: 'login',
loadChildren: () => import('./Pages/Auth/login/login.module').then( m => m.LoginPageModule)
},
{
path: 'register',
loadChildren: () => import('./Pages/Auth/register/register.module').then( m => m.RegisterPageModule)
},
{
path: 'intro',
loadChildren: () => import('./Pages/intro/intro.module').then( m => m.IntroPageModule)
},
{
path: 'tabs',
canActivate: [AuthGuardGuard],
loadChildren: () => import('./tabs/tabs.module').then( m => m.TabsPageModule)
}
];
tabs-routing.module.ts
const routes: Routes = [
{
path: 'tabs',
component: TabsPage,
children: [
{
path: 'groups',
loadChildren: () => import('../tab1/tab1.module').then(m => m.Tab1PageModule)
},
{
path: 'phones',
loadChildren: () => import('../tab2/tab2.module').then(m => m.Tab2PageModule)
},
{
path: 'tab3',
loadChildren: () => import('../tab3/tab3.module').then(m => m.Tab3PageModule)
},
{
path: 'profile',
loadChildren: () => import('../Pages/Auth/profile/profile.module').then( m => m.ProfilePageModule)
},
{
path: '',
redirectTo: 'groups',
pathMatch: 'full'
}
]
},
{
path: '',
redirectTo: 'groups',
pathMatch: 'full'
}
];
知道问题出处在哪里吗?