尝试通过Axios和Vue-Cli 3.0开发服务器访问生产REST服务(@ vue / cli @ 3.0.0-rc.10,@ vue / cli-service-global @ 3.0.0-rc.10,拟框架0.17.5)
我的vue.config.js:
module.exports = {
pluginOptions: {
quasar: {
theme: 'ios'
}
},
devServer: {
proxy: 'https://myProduction.server.com'
}
}
Chrome开发工具列出了我收到的502错误的网关错误:
请求网址:http://localhost:8080/REST/getText.php 请求方法:POST 状态码:502错误的网关 远程地址:127.0.0.1:8080 推荐人政策:降级时不推荐人
我已经尝试使用路由键和changeOrigin进行更详细的配置:true;无济于事。我究竟做错了什么?