Axios 禁用緩存


Disable cache for Axios
1. set headers.Cache-Control = 'no cache' // not work for 0.19.x or later?
2. set timestamp in url parameter for each request(need backend work)

export const client = axios.create({
    baseURL: 'https://www.abc.com/api',
    timeout: 10000,
});

client.interceptors.request.use(
    config => {
        config.params = {...config.params, timestamp: Date.now()};
        config.headers.Authorize = localStorage.getItem('token') || '';
        return config
    },
    error => Promise.reject(error)
);

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM