在vue.config.js中添加如下配置:
devServe: { proxy: 'http://localhost:xxxx' }
说明
编写vue.config.js配置具体代理规则:
module.exports = { devServe: { proxy: { '/xxx': { //匹配所有以'/api'开头的请求路径 target: 'http://localhost:xxx', //代理目标的基础路径 changeOrigin: true, pathRewrite: {'^/xxx': ''} // 把xxx替换为空 只代xxx后面的信息,不写该配置项则匹配的路径也会被发给服务器 // 例如:http://localhost:8080/api/student // 代理服务器匹配到/api开头 不带/api而是直接发送后面的信息 目标服务器/student } } } } /* changeOrigin用于控制请求头的host值 假设本机服务器是localhost:8080 代理服务器代理的端口为5000 changeOrigin为true时,服务器收到的请求头中的hots为:localhost:5000 changeOrigin为false时,服务器收到的请求头中的hots为:localhost:8080 changeOrigin默认值为true */
说明