添加请求拦截器
instance.interceptors.request.use((config) => {
if (config.method == 'get') {
config.params = {
...config.params,
timestamp: (new Date()).valueOf() /*解决IE - GET请求缓存问题*/
}
}
return config
})
instance.interceptors.request.use((config) => {
if (config.method == 'get') {
config.params = {
...config.params,
timestamp: (new Date()).valueOf() /*解决IE - GET请求缓存问题*/
}
}
return config
})
本文标题:axios全局配制使用
本文链接:https://www.haomeiwen.com/subject/edqlzqtx.html
网友评论