微信小程序 wx.request

Posted 5只猫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序 wx.request相关的知识,希望对你有一定的参考价值。

一:问题

微信小程序 post请求时,服务器后台接受不到data里面的数据的bug。

二:解决办法

wx.request({
        url: http://xxxxxxxxx/Create,
        method: POST,
        data: {
          "userid": userid,
          "way": way,
          "specificWay": specificWay,
          "money": money,
          "dateTime": e.detail.value.date +   + e.detail.value.time + : + second,
          "notes": e.detail.value.notes,
        },
        header: {
          "content-type": "application/x-www-form-urlencoded"
        },
        success: function (res) {
          console.log(res.data);
        },
        fail: function (res) {
          console.log(res);
        }
      })

在header里面添加一行代码:

 header:{
          "content-type": "application/x-www-form-urlencoded"
        },

 

以上是关于微信小程序 wx.request的主要内容,如果未能解决你的问题,请参考以下文章

监控微信小程序wx.request请求失败

微信小程序使用Promise对wx.request()进行封装详细教程(附完整代码)

微信小程序填坑,wx.request() 内调用setData()方法错误的解决办法

微信小程序 wx.request

微信小程序wx.request的回调使用

微信小程序获取openid