Vue测试实例-菜鸟教程(runoob.com)vararray=[[1],[2,4],["asdf"]]console.log(array)axios({url:'http://127.0.0.1/index.php',method:'post',data:array}).then(function(response){console.log(response);}).catch(function(error){//console.log(error);});后台接受不到数组
2 回答
慕田峪7331174
TA贡献1828条经验 获得超13个赞
将发送数据的格式改成json格式;发送数据时将数据转化为json字符串就行了请求的headersheaders:{'content-type':'application/json'}发送数据data:JSON.stringify([[1],[2,4],["asdf"]])注意:需要后端修改接收方式
添加回答
举报
0/150
提交
取消