这一篇是解决登录拦截,原文中给出了后端和前端两种方式,但是由于本来做的就是前后端分离项目,所以就直接跳过后端部分,直接写前端代码。
由Vuex实现,思路是在Vuex中创建一个登录的状态,为了防止刷新页面状态消失,采用从window.sessionStorage中获取user数据的方式。
import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) export default new Vuex.Store({ state:{ user: window.sessionStorage.getItem('user' || '[]') == null ? '' : JSON.parse(window.sessionStorage.getItem('user' || '[]')) } } })
这里修改一点东西,localStorage改成sessionStorage,原本是获取的username,直接改成获取json解析的user对象,不清楚原教程中获得username有什么用意。
直接从接着在路由的js文件中为需要拦截的界面添加一个元数据:
{ path:'/index', name:'AppIndex', component:AppIndex, meta:{ requireAuth:true } }
接着在main.js中注册一个全局前置守卫,意思是当一个导航触发时,全局前置守卫按照创建顺序调用。
router.beforeEach((to,from,next)=>{ if (to.meta.requireAuth){ if (store.state.user.username){ next() }else{ next({ path:'login', query:{redirect:to.fullPath} }) } }else{ next() } })
官方文档中的参数解释:
to: Route
: 即将要进入的目标 路由对象
from: Route
: 当前导航正要离开的路由
next: Function
: 一定要调用该方法来 resolve 这个钩子。执行效果依赖 next
方法的调用参数。
next()
: 进行管道中的下一个钩子。如果全部钩子执行完了,则导航的状态就是 confirmed (确认的)。
next(false)
: 中断当前的导航。如果浏览器的 URL 改变了 (可能是用户手动或者浏览器后退按钮),那么 URL 地址会重置到 from
路由对应的地址。
next('/')
或者 next({ path: '/' })
: 跳转到一个不同的地址。当前的导航被中断,然后进行一个新的导航。你可以向 next
传递任意位置对象,且允许设置诸如 replace: true
、name: 'home'
之类的选项以及任何用在 router-link
的 to
prop 或 router.push
中的选项。
next(error)
: (2.4.0+) 如果传入 next
的参数是一个 Error
实例,则导航会被终止且该错误会被传递给 router.onError()
注册过的回调。
到此为止拦截部分就做好了,剩下的就是修改Login.vue中的login方法,使其登录成功后提交mutation,更新vuex中的state