我配置了以下路由器:
const router = new Router({
mode: 'history',
routes: [
// root
{
path: '/',
component: ComponentPage,
redirect: routePrefix.public,
children: [
// public
{
path: routePrefix.public,
component: ComponentPage,
redirect: `${routePrefix.public}/login`,
children: [
{
path: `${routePrefix.public}/login`, component: LoginPage,
}],
},
// private
{
path: routePrefix.private,
component: ComponentPage,
children: [
{
path: `${routePrefix.private}/u`, component: PrivatePage,
}],
}],
}],
});
现在你可以看到,有两个主要部分;一个公共的,一个私人的。 此外,我还为授权配置了以下导航防护装置:
router.beforeEach((to, from, next) => {
console.log(`registered request to redirect from
'${from.fullPath}' to '${to.fullPath}'`);
if (to.fullPath.startsWith(routePrefix.private) &&
!Store.getters['auth/isAuthenticated']) {
console.log('-> reroute to public main');
next(routePrefix.public);
} else if (to.fullPath.startsWith(routePrefix.public) &&
Store.getters['auth/isAuthenticated']) {
console.log('-> reroute to private main');
next(routePrefix.private);
} else {
next();
}
});
如果您想知道路线前缀是什么样的,请转到:
const routePrefix = {
public: '/p', private: '/x',
};
没有什么特别的。
我打开localhost:8080/
页面,按预期将/
重定向到/p/login
。成功登录后,我执行了Router.push('/')
,目的是再次进一步重新路由用户。
我的想法是/
应该再次重定向到/p/login
,导航后卫会在其中启动并将其重定向到/x/
......但它并没有。它保持在/
。
它不应该将其重定向到主页面吗?我该如何解决?
答案 0 :(得分:0)
我没有找到解决这个问题的方法。我直接推到了理想的目的地,而不是让重新路由发挥其魔力,从而实现了我的目标。这很有效。