使用vue-admin-template模 vue-router3 刷新后页面空白

18 篇文章 5 订阅

问题:

使用了panjiachen的模版: vue-admin-template,做的后台管理系统。(http://panjiachen.github.io/vue-admin-template)

在配置权限的时候,动态添加路由之后:

 SET_RESULTASYNCROUTES: (state, routes) => {
    state.resultAsyncRoutes = routes
    state.resultAllRoutes = constantRoutes.concat(state.resultAsyncRoutes, anyRoutes)
    //给路由器添加新路由
    router.addRoutes(state.resultAllRoutes) // 动态添加路由:不执行上会跳转失败:路由更新之后,需要重新调用此

  }

手动去刷新页面时会出现空白:

 原因分析:

看路由信息,动态路由加进去了,但是在页面刷新后,页面中的路由等信息被重新初始化,但并不等同于项目重启,动态路由添加的内容未被执行,导致只保留了固定路由的部分,所以页面刷新后,会重定向到404界面

解决方法

前置守卫router.beforeEach()配置时候,在异步try-catch里面的next(),改成:

next({...to,replace:true})

或者:next({...to})

//next()->nex({...to,replace:true}) 前置路由守卫
router.beforeEach(async (to, from, next) => {
  // start progress bar
  console.log('..to', to)
  NProgress.start()

  // set page title
  document.title = getPageTitle(to.meta.title)

  // determine whether the user has logged in
  const hasToken = getToken()

  if (hasToken) {
    if (to.path === '/login') {
      // if is logged in, redirect to the home page
      next({path: '/'})
      NProgress.done()
    } else {
      const hasGetUserInfo = store.getters.name
      if (hasGetUserInfo) {//已经有用户信息
        next()
      } else {//未有用户信息
        try { //异步try catch
          // get user info
          console.log('需要先截取token')
          await store.dispatch('user/getInfo')
          next({...to,replace:true}) //重新进入to界面,replace: true表示浏览器不需要记录本次历史
        } catch (error) {
          // remove token and go to login page to re-login
          await store.dispatch('user/resetToken')
          Message.error(error || 'Has Error')
          next(`/login?redirect=${to.path}`)
          NProgress.done()
        }
      }
    }
  } else {
    /* has no token*/
    if (whiteList.indexOf(to.path) !== -1) {
      // in the free login whitelist, go directly
      next()
    } else {
      // other pages that do not have permission to access are redirected to the login page.
      next(`/login?redirect=${to.path}`)
      NProgress.done()
    }
  }
})

注:设置 replace 属性的话,当点击时,会调用 router.replace() 而不是 router.push(),于是导航后不会留下 history 记录。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值