search
HomeWeb Front-endFront-end Q&ASet token local cache in vue
Set token local cache in vueMay 11, 2023 am 11:16 AM

In front-end development, user identity verification is often required to ensure the user's legitimacy and security. Token authentication has become an increasingly common method. It allows users to log in and do not need to enter their account and password again for verification in subsequent visits. They only need to pass the Token. There are often such requirements in Vue applications. For example, a Token is required to access protected resources when sending a request, or Token verification is required when routing guards are performed on some pages that require login to enter. So how to set up the local cache of Token in Vue?

This article will introduce how to use localStorage in Vue to cache Token locally so that Token can remain valid for a certain period of time after the user refreshes the page or closes the browser.

What is localStorage?

localStorage is a newly added feature in HTML5. It can store data locally on the client and has the following advantages:

  1. Compared with Cookie, localStorage stores The data volume is larger and can store about 5MB of data;
  2. The data stored in localStorage will not be sent to the server with the request, which helps save request bandwidth and improve application performance;
  3. You can use localStorage to implement simple addition, deletion, modification and query operations on data locally on the client.

Use localStorage in Vue for Token local caching

In Vue applications, we usually need to store the user's Token value locally on the client after logging in, so that when the user opens You can still stay logged in when you create a new page or refresh the page without having to authenticate again.

The following is a sample code for using localStorage to cache Token in Vue:

// 存储 Token
localStorage.setItem('token', 'xxxxxxxxxx');

// 获取 Token
let token = localStorage.getItem('token');

// 删除 Token
localStorage.removeItem('token');

Among them, the setItem method of localStorage can be used to store the Token value locally on the client, and the getItem method can be used to obtain the Token. value, the removeItem method can delete the stored Token value locally.

Therefore, in Vue applications, we usually need to store the Token value returned by the server into localStorage after the user logs in. In subsequent requests, as long as the Token is read from localStorage, you can continue. Use previous identity authentication information to successfully pass identity authentication.

The following is a sample code that uses axios interceptor localStorage for Token verification:

// 实例化 axios 对象
const axiosInstance = axios.create({
    baseURL: 'https://api.example.com'
});

// 添加 request 拦截器
axiosInstance.interceptors.request.use((config) => {
    // 从 localStorage 中获取 Token
    let token = localStorage.getItem('token');

    // 配置请求头包含 Token
    if (token) {
        config.headers.Authorization = `Bearer ${token}`;
    }

    return config;
}, (error) => {
    return Promise.reject(error);
});

// 添加 response 拦截器
axiosInstance.interceptors.response.use((response) => {
    if (response.data.code === '401') {
        // 如果返回的状态码为 401(未授权),则从 localStorage 中删除 Token,并跳转到登录页面重新认证
        localStorage.removeItem('token');
        router.push({name: 'login'});
    }

    return response;
}, (error) => {
    return Promise.reject(error);
});

export default axiosInstance;

In this sample code, add a request interceptor through axios.interceptors.request before sending the request Read the Token value from localStorage and add the Token to the request header, so that the user currently requesting access can be identified during identity authentication in the background. In the response interceptor, if the returned status code is unauthorized, the Token value is deleted from localStorage and jumps to the login page for re-authentication.

Summary

Using Token authentication has become a common method in front-end development, and using localStorage for Token caching is also often used. In Vue, we can easily use localStorage to store, obtain and delete Token. It is worth noting that when using localStorage for local caching, you need to follow the principles of client security to prevent the leakage of sensitive data, such as encrypting the Token and only passing encrypted data, etc.

The above is the detailed content of Set token local cache in vue. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is useEffect? How do you use it to perform side effects?What is useEffect? How do you use it to perform side effects?Mar 19, 2025 pm 03:58 PM

The article discusses useEffect in React, a hook for managing side effects like data fetching and DOM manipulation in functional components. It explains usage, common side effects, and cleanup to prevent issues like memory leaks.

Explain the concept of lazy loading.Explain the concept of lazy loading.Mar 13, 2025 pm 07:47 PM

Lazy loading delays loading of content until needed, improving web performance and user experience by reducing initial load times and server load.

How does currying work in JavaScript, and what are its benefits?How does currying work in JavaScript, and what are its benefits?Mar 18, 2025 pm 01:45 PM

The article discusses currying in JavaScript, a technique transforming multi-argument functions into single-argument function sequences. It explores currying's implementation, benefits like partial application, and practical uses, enhancing code read

What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code?What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code?Mar 18, 2025 pm 01:44 PM

Higher-order functions in JavaScript enhance code conciseness, reusability, modularity, and performance through abstraction, common patterns, and optimization techniques.

How does the React reconciliation algorithm work?How does the React reconciliation algorithm work?Mar 18, 2025 pm 01:58 PM

The article explains React's reconciliation algorithm, which efficiently updates the DOM by comparing Virtual DOM trees. It discusses performance benefits, optimization techniques, and impacts on user experience.Character count: 159

What is useContext? How do you use it to share state between components?What is useContext? How do you use it to share state between components?Mar 19, 2025 pm 03:59 PM

The article explains useContext in React, which simplifies state management by avoiding prop drilling. It discusses benefits like centralized state and performance improvements through reduced re-renders.

How do you prevent default behavior in event handlers?How do you prevent default behavior in event handlers?Mar 19, 2025 pm 04:10 PM

Article discusses preventing default behavior in event handlers using preventDefault() method, its benefits like enhanced user experience, and potential issues like accessibility concerns.

What are Redux reducers? How do they update the state?What are Redux reducers? How do they update the state?Mar 21, 2025 pm 06:21 PM

Redux reducers are pure functions that update the application's state based on actions, ensuring predictability and immutability.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!