gpt4 book ai didi

vue.js - 检查 vue-router.beforeEach 不限制对路由的访问

转载 作者:搜寻专家 更新时间:2023-10-30 22:12:05 25 4
gpt4 key购买 nike

首先,我将 vuejs 2.0 与 webpack、vue-router(历史模式 - SPA 站点)和运行在 webpack 开发服务器上且热模块加载的 vuex 结合使用。

我有大约 10 条路由映射到组件。站点运行良好,但现在我要添加一些基于 token 的身份验证。我正在使用 router.beforeEach 来执行 token 检查。如果 token 有效,则应该让他们通过。如果 token 无效,它应该将他们重定向到 /login 页面。问题是它第一次执行检查并限制它。但是第二次尝试允许我转到页面并显示内容。每个第二个请求似乎都能正确处理路由并重定向到 /login。出于测试目的,我的 checkToken() 函数总是返回 false。

代码:

// Configure Router
const router = new Router({
routes, //routes are configured elsewhere, they work fine so not needed
mode: 'history'
})

router.beforeEach((to, from, next) => {
if(to.path != '/login') {
if(checkToken()) {
logger('There is a token, resume. (' + to.path + ')');
next();
} else {
logger('There is no token, redirect to login. (' + to.path + ')');
next('login');
// next('/login');
// router.push('login');
}
} else {
logger('You\'re on the login page');
}
next();
});


function checkToken() {
return false;
}

转到主页(“/”),它按预期重定向到 /login。在我的控制台中,我有以下 2 个条目:

[ 14:36:30.399 ] : There is no token, redirect to login. (/) [ 14:36:30.399 ] : You're on the login page

看起来还不错。它尝试加载“/”并发现没有 token ,然后重定向到 /login,检查发现我们在登录页面并停止。

现在我将单击我的项目 链接,该链接将带我到/project。控制台输出:

[ 14:40:21.322 ] : There is no token, redirect to login. (/project)

完美,但实际上显示的是项目页面,而不是登录页面。

现在我将单击我的站点 链接,该链接应将我带到/site。控制台输出:

[ 14:41:50.790 ] : There is no token, redirect to login. (/site) [ 14:41:50.792 ] : You're on the login page

看起来不错,并且浏览器正在显示站点 页面。这正是我想看到的。

现在我将单击指向 /requestRequests 链接。控制台输出:

[ 14:44:13.114 ] : There is no token, redirect to login. (/request)

但再一次,它不是重定向。当我应该看到我的登录页面时,我看到了我的请求页面。

这一次,我将再次单击我的项目 链接 (/project),该链接错误地显示了项目 页面而不是 < em>登录页面。控制台输出:

[ 14:47:12.799 ] : There is no token, redirect to login. (/project) [ 14:47:12.800 ] : You're on the login page

这一次,它应该将我重定向到 /login 页面。

实际上,无论我按什么顺序或点击哪个链接,我点击的每个其他链接都会得到适当的重定向。第一个重定向,第二个不重定向,第三个重定向,第四个不重定向,第五个重定向,等等...

我已经尝试了 next('/login')、next('login') 和 router.push('login'),它们都是相同的结果。它知道什么时候应该重定向,但重定向只在每隔一段时间起作用。

如果我执行完整请求(页面刷新、输入地址并按回车),它将始终按计划重定向到 /login,但我正在尝试使用 SPA 执行此操作.有什么我想念的吗?

最佳答案

已修复。我的监督。

路由器代码应该是这样的:

router.beforeEach((to, from, next) => {
if(to.path != '/login') {
if(checkToken()) {
logger('There is a token, resume. (' + to.path + ')');
next();
} else {
logger('There is no token, redirect to login. (' + to.path + ')');
next('login');
}
} else {
logger('You\'re on the login page');
next(); // This is where it should have been
}
// next(); - This is in the wrong place
});

一个简单答案的愚蠢问题,我的 next() 放在了错误的位置,所以它总是在最后处理它。不过,我仍然很好奇为什么它会正确重定向。

关于vue.js - 检查 vue-router.beforeEach 不限制对路由的访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43378726/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com