config/index.js里配置環(huán)境的proxyTable屬性
proxyTable: { '/api': { target: 'http://127.0.0.1:5000', changeOrigin: true, pathRewrite: { '^/api': '' } } }
然后在axios里面訪問 /api/xxx
就可以成功訪問了
proxyTable: { '/api': { target: 'http://127.0.0.1:5000', changeOrigin: true, pathRewrite: { '^/api': '' } } }
然后在axios里面訪問 /api/xxx
就可以成功訪問了