1. 程式人生 > >在vue中使用axios發送post請求,參數方式

在vue中使用axios發送post請求,參數方式

var end urlencode image 數據 返回 resp cnblogs pos

由於後臺接收的參數格式為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); });

成功得到後臺返回的數據技術分享

在vue中使用axios發送post請求,參數方式