使用vue如何实现登录注册及token验证
程序员文章站
2022-04-20 19:42:57
...
在vue单页中,我们可以通过监控route对象,从中匹配信息去决定是否验证token,然后定义后续行为。下面通过实例代码给大家分享vue登录注册及token验证功能,需要的朋友参考下吧
在大多数网站中,实现登录注册都是结合本地存储cookie、localStorage和请求时验证token等技术。而对于某些功能页面,会尝试获取本地存储中的token进行判断,存在则可进入,否则跳到登录页或弹出登录框。
而在vue单页中,我们可以通过监控route对象,从中匹配信息去决定是否验证token,然后定义后续行为。
具体实现代码如下:
1. 利用router.beforeEach钩子, 判断目标路由是否携带了相关meta信息
// router.js import Vue from 'vue' import VueRouter from 'vue-router' Vue.use(VueRouter) const routes = [ { path: '/', component: require('./views/Home'), meta: { requiresAuth: true } }, ] const router = new VueRouter({ routes: routes }) router.beforeEach((to, from, next) => { let token = window.localStorage.getItem('token') if (to.matched.some(record => record.meta.requiresAuth) && (!token || token === null)) { next({ path: '/login', query: { redirect: to.fullPath } }) } else { next() } }) export default router
2. watch route对象。原理同上。
<script> // App.vue export default { watch:{ '$route':function(to,from){ let token = window.localStorage.getItem('token'); if (to.matched.some(record => record.meta.requiresAuth) && (!token || token === null)) { next({ path: '/login', query: { redirect: to.fullPath } }) } else { next() } } } } </script>
上面是我整理给大家的,希望今后会对大家有帮助。
相关文章:
以上就是使用vue如何实现登录注册及token验证的详细内容,更多请关注其它相关文章!
上一篇: mysql主从同步_MySQL
下一篇: SQLSERVER中的假脱机
推荐阅读
-
使用vue-route 的 beforeEach 实现导航守卫(路由跳转前验证登录)功能
-
vue登录注册及token验证实现代码
-
用vue实现注册页效果 vue实现短信验证码登录
-
Vue.js使用$.ajax和vue-resource实现OAuth的注册、登录、注销和API调用
-
Vue+Node.js+Mongodb 实现身份验证(token的使用和说明)
-
vue框架+axios实现登录守卫(验证token是否存在以及过期)
-
SpringBoot使用JWT实现Token登录验证
-
vue3如何优雅的实现移动端登录注册模块
-
vue.js实现用户评论、登录、注册、及修改信息功能
-
如何在vue3.0+中使用tinymce及实现多图上传文件上传公式编辑功能