vue3脚手架设置跨越

vue

1.在vue.config.js中配置

module.exports = {

devServer: {

proxy: {

'/api': {

target: 'http://22.163.72.64', //跨越的对应服务器地址

changeOrigin: true, //允许跨域

ws: true,

pathRewrite: {

'^/api': ''

}

}

}

}

}

2.发送请求

axios.get("api/test/login")

.then((res) => {

console.log(res)

})

// 相当于

axios.get("http://22.163.72.64/test/login")

.then((res) => {

console.log(res)

})

以上是 vue3脚手架设置跨越 的全部内容, 来源链接: utcz.com/z/376106.html

回到顶部