在我的应用程序中,用户登录后有一个主页和其他一些页面。问题是,当我进入其他页面之一时,刷新页面会再次将我带回家。这是我的Routes
:
const routes: Routes = [
{
path: '', redirectTo: '/home', pathMatch: 'full'
},
{
path: 'login', component: LoginComponent
},{
path: 'list', component: ListComponent, canActivate : [AuthGuardService]
},{
path: 'home', component: HomeComponent, canActivate : [AuthGuardService]
},{
path: 'detail/:id', component: HomeComponent, canActivate : [AuthGuardService],
},{
path: '**', redirectTo: 'login' ,pathMatch: 'full'
}
];
应用程序组件具有路由器出口
<div [ngClass]="{'container': (isLoggedIn$ | async), 'mt-2': (isLoggedIn$ | async)}" class="h-100">
<router-outlet></router-outlet>
</div>
那么,我期望什么?首先,如果我是“列表”页面(localhost:4200/list
),并且刷新了此页面,则应将其保留在该页面中。在那个页面。但是现在它将我重定向到localhost:4200/home
。
当然,当我单击列表项时,它应该将我发送到localhost:4200/detail/itemId
,但它总是将我发送到家里。谢谢
使用AuthGuardService编辑:
export class AuthGuardService implements CanActivate {
constructor(private route : Router, private store: Store<AppState>) {}
canActivate() {
return this.store
.pipe(
select(isLoggedIn),
tap(loggedIn => {
if (!loggedIn) {
this.route.navigate(['login']);
}
})
)
}
}
我添加了登录效果
login$ = createEffect(() =>
this.actions$
.pipe(
ofType(userActions.login),
tap(action => {
localStorage.setItem('userInfo',
JSON.stringify(action.user))
this.router.navigate(['home']);
})
)
,{dispatch: false});
解决方案:
好吧,经过几个小时的调试,我找到了解决方案。基本上我删除了this.router.navigate(['home']);在AuthGuardService中,我将在用户登录后立即将其放在组件的登录功能上。this.router.navigate(['home']);每次刷新页面时,AuthGuardService中的AuthGuard服务就会触发警惕,因此每次它重定向到我的家时。而已。谢谢
答案 0 :(得分:0)
路由的顺序很重要,因为路由器在匹配路由时会使用“先赢”策略,因此,应将更具体的路由放在不那么具体的路由之上。
只有在没有其他路由首先匹配时,路由器才会选择它。
参考:https://angular.io/guide/router#route-order
因此,您可以如下更改顺序
const routes: Routes = [
{
path: 'login', component: LoginComponent
},{
path: 'list', component: ListComponent, canActivate : [AuthGuardService]
},{
path: 'home', component: HomeComponent, canActivate : [AuthGuardService]
},{
path: 'detail/:id', component: HomeComponent, canActivate : [AuthGuardService],
}
{
path: '', redirectTo: '/home', pathMatch: 'full'
},
,{
path: '**', redirectTo: 'login' ,pathMatch: 'full'
}
];