dva 路由权鉴
Posted unreal-feather
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dva 路由权鉴相关的知识,希望对你有一定的参考价值。
在路由文件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过期了无法判断
以上是关于dva 路由权鉴的主要内容,如果未能解决你的问题,请参考以下文章