在vue中使用axios发送post请求,参数方式

对着背影说爱祢 提交于 2020-04-08 03:03:10

 由于后台接收的参数格式为FormData格式

在axios中参数格式默认为

在传参数前,将原先官方提供的格式

改为如下:

axios({
  url: '../../../room/listRoomPage',
  method: 'post',
  data: {offset: 0, limit: 9999, roomCode: "", roomtypeId: 0, floorId: 0},
  transformRequest: [function (data) {
    var oMyForm = new FormData();
    oMyForm.append("offset", 0);
    oMyForm.append("limit", 9999);
    oMyForm.append("roomCode", "");
    oMyForm.append("roomtypeId", 0);
    oMyForm.append("floorId", 0);
    console.info(oMyForm);
    return oMyForm;
  }],
  headers: {
    'Content-Type': 'application/x-www-form-urlencoded'
  }
})
  .then(function (response) {
    console.log(response);
  })
  .catch(function (error) {
    console.log(error);
  });

成功得到后台返回的数据

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!