axios请求header中添加'Pragma':'no-cache'。

永久性解决方法是在axios配置添加这个参数,比如:

const config = {
    headers: { Pragma: 'no-cache'},
    params: { id: this.state.taskID }
}

// 或者这样写也可以
config.headers['Pragma'] = 'no-cache'

axios.get(url, config).then(...)

参照链接:https://stackoverflow.com/questions/45830531/axios-only-called-once-inside-self-invoking-function-internet-explorer

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐