.then((res) => {
isRelogin.show = false;
store.dispatch("GenerateRoutes").then(accessRoutes => {
router.addRoutes(accessRoutes); // 动态添加可访问路由表
next({ ...to, replace: true });
.catch(err => {
store.dispatch("LogOut").then(() => {
next({ path: "/" });
} else {
next();
} else {
// 没有token
if (whiteList.indexOf(to.path) !== -1) {
next();
} else {
next(`/login?redirect=${to.fullPath}`); // 否则全部重定向到登录页
router.js
// 公共路由
export const constantRoutes = [
path: "/redirect",
component: Layout,
hidden: true,
children: [
path: "/redirect/:path(.*)",
component: () => import("@/views/redirect"),
path: "/login",
component: () => import("@/views/login"),
hidden: true,
path: "/404",
component: () => import("@/views/error/404"),
hidden: true,
path: "/401",
component: () => import("@/views/error/401"),
hidden: true,
export default new Router({
mode: "history",
scrollBehavior: () => ({ y: 0 }),
routes: [...constantRoutes],
accessRoutes: accessRoutes是经过store中处理之后的,最终结构如下
path: "/xx/xx",
component: Layout,
children: [{}, ...],
...多个路由,
path: "*",
redirect: '/404',
hidden: true
因为业务需要,不同的角色访问地址 / 时,跳转的页面不同。以及一些其他原因。所以需要对accessRoutes进行处理;
修改之后的代码
permission.js
store.dispatch("GenerateRoutes").then(accessRoutes => {
const mainRoute = {
path: "/",
component: () => import("@/layout/main.vue"),
redirect: getFirstPath("", accessRoutes),
children: [...accessRoutes],
router.addRoutes([mainRoute]);
next({ ...to, replace: true });
但是最终运行结果是,地址栏访问动态的路由 /xx/xx 时可以访问到;但是访问 / 时却一直会跳转到404页面中;
网上查博客,查到一种方法可行,恰巧也是使用的若依;
RuoYi-Vue——关于登录后不同角色跳不同页面
该方法是在 router.addRoutes 之后对角色进行判断,然后跳转不同的相应的页面。
🙄But,问题解决了,但是我根据角色对"/"路由设置不同的 redirect 为什么会一直404呢?
网上查不到,只能自己调试代码了。。。
1. 404原因?
先在router.addRoute之后的next行调试,这个时候动态路由已经添加进去了。
此时,to.path == "/"。一直向下到VueRouter中match匹配路由的地方,在pathList中发现通配符 * 的路由在 "" 之前。
path: "/" 或 path: "" 的路由,vueRouter会在内部转换成 ""
所以,每次访问 "/"的时候,会一直提示404;
2. 通配符 * 在 "" 之前?
对router.addRoute进行调试,一直向下找到addRouteRecord方法,你会发现,vueRouter添加router record的时候,对新进来的routes数组是以深度优先进行遍历的。
而代码中的 addRoute 添加的路由结构是:
path: "/",
redirect: "xxx",
children: [..., ..., { path: "*", redirect: "/404" }]
所以,pathList中的的 "*" 会在 "" 之前,就会导致每次访问“/”的时候一直跳转到404页面;
问题原因找到了,所以只需要对通配符的路由提出来,放到最后就可以完美解决问题了!
router.addRoutes([mainRoute, { path: '*', redirect: '/404', hidden: true }]);
我们成功配置动态路由,点导航栏没问题,一刷新和输入地址 就出问题跳404页面!
addRoutes动态添加路由还没完成,页面就从静态找了。 路由生命周期 静态→动态,404是放到静态的所有老报。
将404路由也动态添加进去!
这是我报bug的样子
咱们把404路由删了,用一个变量代替
操作步骤一:
操作步骤二:
操作步骤三:
在APP使用created()函数是为了刷新时候调用第二个步骤的方法。
...
背景:设置好动态路由后,在页面刷新或者加载会出现定位到404问题
问题原因:
权限控制的路由模块是动态添加进去的,404监听路由是在默认路由里面的,优先级比动态路由要高,所以刷新后默认先被404接管了,把404监听路由也放到动态路由的末尾就可以了
解决办法:
我把我constantRoutes 里面的404注释掉了,然后asyncRoutes里面加一个就好了
...
ssh: connect to host github.com port 22: Connection timed out fatal: Could not read from remote repo
噫吁嘻嘻嘻嘻: