axios跨域的解决

webpack-dev-server:配置代理服务器解决跨域

在config文件夹中的index.js文件中的proxyTable中配置

    // '/api'表示我们请求的接口全部都是以/api开头
    '/api': {
      target: 'http://localhost:8888',
      changeOrigin: true
    }

重新设置基础路径

    axios.defaults.baseURL = '/api/private/v1'

重新运行服务器

    node app.js

你可能感兴趣的:(axios跨域的解决)