1.我在main.js中設(shè)置了axios.defaults.withCredentials=true
axios.defaults.crossDomain=true
axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded'在其他組件用的時(shí)候一旦帶參數(shù)例如: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('未能與服務(wù)器連接,請(qǐng)稍后嘗試')
console.log(error);
});不加后面的headers的設(shè)置就不能跨域了為什么求教2.當(dāng)我設(shè)置了headers之后傳過(guò)去的參數(shù)是{'offset':5}這種形式,我想要像ajax那樣直接offset:5,不包含在對(duì)象里面,如何實(shí)現(xiàn),要加什么配置選項(xiàng)
axios跨域問(wèn)題
肥皂起泡泡
2018-09-08 20:29:48