Vue 使用beforeEach实现登录状态检查功能
人气:0使用VueRouter的beforeEach钩子函数,可以实现导航跳转前检查登录状态的需求。
1.在登录请求接口时返回用户的信息,比如 userInfo:{userId:'123', userName:'小明'},登录成功之后将userInfo存入store中。
2.使用beforeEach实现登录状态检查
vueRouter.beforeEach((to, from, next) => { //store的getters中定义获取用户信息的函数 getUser //userId为空说明用户未登录 let isLogin = store.getters.getUser.userId; if (!isLogin) {//未登录 if (to.path !== '/login') {//跳转到登录页 return next({path: '/login'}); }else { next(); } }else {//已登录 if (to.path === '/login') {//跳转到首页 return next({path: '/index'}); } next(); } });
如果需要退出登录,只需要将保存在store中的用户信息置空即可。
以上这篇Vue 使用beforeEach实现登录状态检查功能就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
您可能感兴趣的文章:
加载全部内容