微信小程序 发送POST请求 后台接收不到数据

小程序发送post请求 接收不到

wx.request({
      method: "post",
      url: "http://127.0.0.1:8080/api/wechat/update/286",
        data: {
          "jsonStr": "jsonStr"
        },
      header: {
        'content-type': 'application/json'
      },
        success: res => {
          console.log(res)
        },
        error: res => {

        }
      })

修改为

wx.request({
      method: "post",
      url: "http://127.0.0.1:8080/api/wechat/update/286",
        data: {
          "jsonStr": "jsonStr"
        },
      header: {
        'content-type': 'application/x-www-form-urlencoded'
      },
        success: res => {
          console.log(res)
        },
        error: res => {

        }
      })

你可能感兴趣的:(微信小程序 发送POST请求 后台接收不到数据)