vue-cli2.x下,发送post请求还是有跨域问题
实在想到不到是哪里出了问题了
发送的请求
没有任何返回数据
proxyTable配置
proxyTable: { '/api': {
target: 'http://127.0.0.1:8080',
changeOrigin: true
}
},
post请求
var data = this.$qs.stringify({ 'name': this.ruleForm.name,
'name2': this.ruleForm.name
})
this.$axios.post('/api/user/create',data).then(res=>{
console.log(res)
})
接口是正常能访问的
回答:
本地代理需要请求8001,而不是请求8080,你需要修改代码。
以上是 vue-cli2.x下,发送post请求还是有跨域问题 的全部内容, 来源链接: utcz.com/p/937440.html