axios 拦截器统一在接口增加时间戳参数,防止走缓存。
2021-04-13 本文已影响0人
飞吧666
request.interceptors.request.use(
config => {
if (config.method == 'post') {
config.data = {
...config.data,
_t: Date.parse(new Date()) / 1000
}
} else if (config.method == 'get') {
config.params = {
_t: Date.parse(new Date()) / 1000,
...config.params
}
}
return config
}, function (error) {
return Promise.reject(error)
}
)