The project was tested these days, and the tester reported a bug to me, saying that the token has expired and the route should automatically jump to the login page to allow the user to log in again. Let me first talk about some prerequisites. 1: The token validity period of our company is set to one hour in the production environment. When the token expires, all interfaces return directly. Jump directly to the login page and let the user log in to retrieve the token Information returned by the interface { code:10009, msg:'token expired', data:null } Global routing hook function router.beforeEach(async(to, from, next) => { //Get token // determine whether the user has logged in const hasToken = getToken() if (hasToken) { //token exists, if the current redirected route is the login interface if (to.path === '/login') { // if is logged in, redirect to the home page next({ path: '/' }) NProgress.done() } else { //Here, we remove the user's permissions to determine whether the user has permission to access this route} catch (error) { // remove token and go to login page to re-login await store.dispatch('user/resetToken') Message.error(error || 'Has Error') next(`/login?redirect=${to.path}`) NProgress.done() } } else { //token does not exist if (whiteList.indexOf(to.path) !== -1) { //If the route to be redirected is in the whitelist, jump to next() } else { //Otherwise jump to the login page next(`/login?redirect=${to.path}`) NProgress.done() } } }) So I directly intercept all requests. When the response data returns code 10009, I directly clear the user information and reload the page. I simplified the code because when the user logs in, the token, name, and permission information will be stored in the store/user.js file, so as long as the token expires, the information in the user file will be cleared. In this way, after the token expires, when the page is refreshed or the component is jumped, the global beforeEach judgment will be called. When the token information does not exist, it will jump directly to the login page. import axios from 'axios' import { MessageBox, Message } from 'element-ui' import store from '@/store' import { getToken } from '@/utils/auth' const service = axios.create({ baseURL: process.env.VUE_APP_BASE_API, timeout: 5000 }) // Carry the token when sending the request service.interceptors.request.use( config => { if (store.getters.token) { config.headers['sg-token'] = getToken() } return config }, error => { console.log(error) return Promise.reject(error) } ) service.interceptors.response.use( response => { console.log(response.data) const res = response.data // Token expired, return to login interface if (res.code === 10009) { store.dispatch('user/logout').then(() => { location.reload(true) }) } return res }, error => { console.log('err' + error) // for debug Message({ message: error.msg, type: 'error', duration: 5 * 1000 }) return Promise.reject(error) } ) export default service Well, that’s all about token sharing. Replace the above code with your data according to your project. This is the end of this article about how to use Vue to automatically jump to the login page when the token expires. For more information about how to automatically jump to the login page when the token expires, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: URL Rewrite Module 2.1 URL Rewrite Module Rule Writing
>>: Detailed explanation of HTML table tags (suitable for beginners)
Here are some points to note when registering Tom...
1: Check the PHP version after entering the termi...
Database read-write separation is an essential an...
The scroll bar position is retained when scrollin...
Example: We use the Python code loop_hello.py as ...
Since the network requests initiated by native js...
1. Error reproduction I can access the MySQL data...
*** Example of setting the style of a hyperlink a...
How to check the status of Linux firewall 1. Basi...
Table of contents Preface Asynchronous loading Pa...
Optimizing large amounts of database data is a hu...
In Docker's design, a container runs only one...
This article introduces several methods of implem...
1. Problem description Due to some reasons, the d...
Does performance really matter? Performance is im...