Vue-cli3配置proxy
vue.config.js配置如下
devServer: { proxy: { '.action': { target: 'http://xxx.xxx.net', // 接口的域名 changeOrigin: true } } }
请求如下
this.axios.post('/user/login.action',{ CompanyName, UserPass, UserName })
报错如下
Proxy error: Could not proxy request /user/login.action from localhost:8080 to http://xxx.xxx.net. See https://nodejs.org/api/errors.html#errors_common_system_errors for more information (ETIMEDOUT).
- postman能调通 求问是什么问题
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
'.action':
这个地方写成正则表达式
你好,请问后来问题解决了吗?