vue 實現登入後,所有的頁面無需登錄, 未登入。造訪任何頁面的位址都會調到登入頁,實現想法,
專案使用的 是vue2.0 axios,
黄舟2017-05-19 10:38:19
在路由配置中,需要登入的路由加上
meta: { requiresAuth: true }
在main.js中判斷使用者是否登錄,未登入跳到登入頁
router.beforeEach((to, from, next) => {
if (to.matched.some(record => record.meta.requiresAuth)) {
//这里判断用户是否登录,我例子中是验证本地存储是否有token
if (!localStorage.token) {
next({
path: '/login',
query: { redirect: to.fullPath }
})
} else {
next()
}
} else {
next() // 确保一定要调用 next()
}
})