vue-axios 请求接口失败
this.axios.post('help/liushui').then((response) => {
console.log(response)
}).catch((response) => {
console.log(response)
})
这么请求的出错了
config/index.js
proxyTable: {
'/apidomain': {
target: 'http://www.xxx.com', // 或ip或域名。
changeOrigin: true,
pathRewrite: {
'^/apidomain': ''
}
}
}
报这个错误了
POST http://localhost:8080/help/liushui 404 (Not Found)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
跨域问题可参考:https://segmentfault.com/a/11...
跨域了,请求的地址不允许来自'http://localhost:8080'的请求