1.我在main.js中设置了axios.defaults.withCredentials=true
axios.defaults.crossDomain=true
axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded'在其他组件用的时候一旦带参数例如:self.axios.post('http://pj.dianmila.com/supersolid/supersolid_api.php?a=list',{offset:self.swiperlen},{headers: {'Content-Type': 'application/x-www-form-urlencoded'}}).then(function(res) { var datajson = res.data;..................
}
}
}).catch(function (error) {
alert('未能与服务器连接,请稍后尝试')
console.log(error);
});不加后面的headers的设置就不能跨域了为什么求教2.当我设置了headers之后传过去的参数是{'offset':5}这种形式,我想要像ajax那样直接offset:5,不包含在对象里面,如何实现,要加什么配置选项
添加回答
举报
0/150
提交
取消