axios向后端传值
axios向后端传值第一种JSON.stringify()方法axios.post('/console/initCalculationParam',JSON.stringify({car_series: this.carOptionsValue,dateTime: this.value1,}),{headers: {'Content-Type'...
·
axios向后端传值
第一种JSON.stringify()方法
axios.post('/console/initCalculationParam',JSON.stringify({
car_series: this.carOptionsValue,
dateTime: this.value1,
}),{
headers: {
'Content-Type': 'application/json'
}
})
第二种 formData
let formData=new FormData;
formData.append("carSeries",this.cars);
formData.append("number",this.StockNumber);
return axios.post('/compileReCarTool/getData',formData)
.then(response=> {
}
.catch(error=> {
console.log(error);
});
更多推荐
已为社区贡献1条内容
所有评论(0)