post请求发送Json格式数据
这里就不详细说明了
举个例子
- var param = new URLSearchParams();
- ? ? ? ? param.append("productId",this.$route.params.id)
- ? ? ? ? this.axios({
- ? ? ? ? ? ? url:"http://39.106.44.63:10086/loadAllProduct",
- ? ? ? ? ? ? method:"post",
- ? ? ? ? ? ? data:param
- ? ? ? ? }).then((data)=>{
- ? ? ? ? ? ? this.loading=false;
- ? ? ? ? ? ? this.arr=data.data.queryResult.list;
- ? ? ? ? ? ? this.arr2=data.data.queryResult.list[0].pictureList
- ? ? ? ? ? ? console.log(this.arr2)
- ? ? ? ? ? ? console.log(this.arr)
- ? ? ? ? })
解决post请求无法携带数据问题
虽然我写代码的时候没有遇到这个问题,但还是要记录一下:
以上为个人经验,希望能给大家一个参考,也希望大家多多支持w3xue。