vue项目中axios请求接口时发出两次请求

1.不能直接把地址写在url的位置,需要把公用的域名在config=>index.js中进行配置。
就完整解决了。
2.在网上查询了很多资料,最好不能解决,所以记录一下。

 proxyTable: {
      '/api': {
        target: 'https://www.easy-mock.com/',
        changeOrigin:true,
         pathRewrite: {
          '^/api': ' '
         }
      }
    },

你可能感兴趣的:(vue项目中axios请求接口时发出两次请求)