In the case of complete separation of the front-end and back-end, the general idea of implementing token verification in the Vue project is as follows: 1. When logging in for the first time, the front-end calls the back-end login interface and sends the username and password 2. The backend receives the request, verifies the username and password, and returns a token to the frontend if the verification is successful. 3. The front end gets the token, stores it in localStorage and vuex, and jumps to the routing page 4. Every time the front-end jumps to a route, it determines whether there is a token in localStorage. If not, it jumps to the login page. If yes, it jumps to the corresponding route page. 5. Every time you call the backend interface, you must add a token to the request header 6. The backend checks whether there is a token in the request header. If there is a token, it gets the token and verifies it. If the verification is successful, it returns data. If the verification fails (for example, the token expires), it returns 401. If there is no token in the request header, it also returns 401. 7. If the status code received by the front end is 401, clear the token information and jump to the login page vue-cli builds a project and briefly explains what the front end needs to do: 1. The login interface is called successfully, and the token is stored in localStorage and vuex in the callback function login.vue <template> <div> <input type="text" v-model="loginForm.username" placeholder="Username"/> <input type="text" v-model="loginForm.password" placeholder="password"/> <button @click="login">Login</button> </div> </template> <script> import { mapMutations } from 'vuex'; export default { data () { return { loginForm: { username: '', password: '' }, userToken: '' }; }, methods: { ...mapMutations(['changeLogin']), login() { let _this = this; if (this.loginForm.username === '' || this.loginForm.password === '') { alert('Account or password cannot be empty'); } else { this.axios({ method: 'post', url: '/user/login', data: _this.loginForm }).then(res => { console.log(res.data); _this.userToken = 'Bearer ' + res.data.data.body.token; // Save user token to vuex_this.changeLogin({ Authorization: _this.userToken }); _this.$router.push('/home'); alert('Login successful'); }).catch(error => { alert('Account or password error'); console.log(error); }); } } } }; </script> index.js in the store folder import Vue from 'vue'; import Vuex from 'vuex'; Vue.use(Vuex); const store = new Vuex.Store({ state: { //Store token Authorization: localStorage.getItem('Authorization') ? localStorage.getItem('Authorization') : '' }, mutations: // Modify the token and store it in localStorage changeLogin (state, user) { state.Authorization = user.Authorization; localStorage.setItem('Authorization', user.Authorization); } } }); export default store; 2. Routing Navigation Guard index.js in the router folder import Vue from 'vue'; import Router from 'vue-router'; import login from '@/components/login'; import home from '@/components/home'; Vue.use(Router); const router = new Router({ routes: [ { path: '/', redirect: '/login' }, { path: '/login', name: 'login', component: login }, { path: '/home', name: 'home', component: home } ] }); // Navigation guard // Use router.beforeEach to register a global front guard to determine whether the user is logged in router.beforeEach((to, from, next) => { if (to.path === '/login') { next(); } else { let token = localStorage.getItem('Authorization'); if (token === null || token === '') { next('/login'); } else { next(); } } }); export default router; 3. Add token to request header // Add a request interceptor and add a token to the request header axios.interceptors.request.use( config => { if (localStorage.getItem('Authorization')) { config.headers.Authorization = localStorage.getItem('Authorization'); } return config; }, error => { return Promise.reject(error); }); 4. If the status code is 401, clear the token information and jump to the login page localStorage.removeItem('Authorization'); this.$router.push('/login'); The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Tutorial on installing Ubuntu 20.04 and NVIDIA drivers
>>: MySQL cross-table query and cross-table update
This article example shares the specific code of ...
Excel is the most commonly used tool for data ana...
I saw an article in Toutiao IT School that CSS pe...
How to recursively select all child elements usin...
The reason for writing such an article is that on...
Preface Any application that can be written in Ja...
Preface In fact, the humble "!" has man...
Table of contents 1. Location / Matching 2. Locat...
<br />The color of a web page is one of the ...
I searched a lot online and found that many of th...
Preface When developing WeChat applets, you often...
Database backup #grammar: # mysqldump -h server-u...
Find two test machines: [root@docker1 centos_zabb...
【1】exists Use a loop to query the external table ...
Using the CSS float property correctly can become...