在路由文件router下

  history.listen(location => {
        const uid = sessionStorage.getItem('uid') || localStorage.getItem("uid")
        console.log(location.pathname)
        if (location.pathname === '/' || location.pathname === '/login') {
            if (uid) {
                app._store.dispatch(routerRedux.replace('/backstage'))
              }
        }else{
            if(!uid){
                app._store.dispatch(routerRedux.push('/'))
            }
        }

添加全局的路由监听。然后判断跳转。

这里只能判断本地的路由登录情况,如果token过期了无法判断

相关文章:

  • 2022-12-23
  • 2021-09-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-20
  • 2021-07-02
猜你喜欢
  • 2022-12-23
  • 2021-08-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-15
  • 2021-11-30
相关资源
相似解决方案