在vue.config.js中,設置 module.exports = { publicPath: '/app', devServer: { proxy: { '/test': { target: 'http://localhost:88', ws: true, changeOrigin: true ...
在vue.config.js中,設置
module.exports = { publicPath: '/app', devServer: { proxy: { '/test': { target: 'http://localhost:88', ws: true, changeOrigin: true, pathRewrite: { '^/test': '/', // rewrite path }, } } } }
axios中
this.axios.post('/test').then(value => { console.log(value); })
這樣設置後,卻訪問不到,原因是,後臺也要有 test欄位, 這樣設置後,後臺訪問的URL為: http://localhost:88/test ,而不是 http://localhost:88