vue路由守卫报错 Error: Redirected * to * via a navigation guard.

发布于 2022-09-12 04:34:03 字数 1232 浏览 22 评论 0

// router.ts
const routes: Array<RouteConfig> = [
    {path: '/', redirect: {name: 'Home'}},
    {path: '/home', name: 'Home', component: Home},
    {
        path: '/dashboard', component: () => import('../views/Dashboard.vue'),
        meta: {isLogin: true},
        children: [
            {path: '', component: () => import('../views/Dash/Certificate/index.vue'), meta: {isViewer: true},
            {path: 'profile', component: () => import('../views/Dash/ProfileComponent.vue')},
        ]
    },
];


//guard
router.beforeEach((to, from, next) => {
    const profilePath = "/dashboard/profile";
    if (!to.matched.some(res => res.meta.isLogin)) {
        return next();
    }

    // isNotLogin
    if (!localStorage['currentUser'])
        return next({path: "/", query: {redirect: to.fullPath}});

    // isLogin
    if (to.matched.some(res => res.meta?.isViewer)) {
        viewService.isCertificateViewer ? next() : next({path: profilePath})
    } else next()
});

直接访问/dashboard,不是viewer权限,next到 /dashboard/profile。然后就报错了

vue-router.esm.js:1958 Uncaught (in promise) Error: Redirected when going from "/home" to "/dashboard" via a navigation guard.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

分開簡單 2022-09-19 04:34:04

这里是因为一个从一级路由跳转到二级路由的path路径问题

重复的重定向引起vue-router报错。。

在跳转前判断当前页面是否就是要跳转的页面,如果是则不再次跳转,这样就不会报错了

花想c 2022-09-19 04:34:04

我改了下好像不行, 在最上面改的。。之前太丑了。重写了下。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文