在vue.config.js中,設(shè)置
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); })
這樣設(shè)置后,卻訪問不到,原因是,后臺也要有 test字段, 這樣設(shè)置后,后臺訪問的URL為: http://localhost:88/test ,而不是 http://localhost:88