axios请求代码如下,已经设置了跨域并能请求成功,但是请求返回的数据不对,疑是传参没有成功,各位帮忙看看。
axios({
url: 'http://www.xiangwencheng.top/score/',
method: 'post',
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
},
data: {
score: '80'
},
responseType: 'json',
}).then(res => {
console.log(res);
}).catch(err => {
console.log("xxxxxxxxxx");
});
注:将data换成params依然出现同样问题,而使用jquery.ajax()不会出现上述问题
打开Headers看下不就知道了