美文网首页
axios全局配制使用

axios全局配制使用

作者: 长街漫步 | 来源:发表于2019-05-20 17:21 被阅读0次

    添加请求拦截器

    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