微信小程序官方文档请求接口调用报错

官方文档的请求

接口没问题,但是会报错400 (Bad Request)

把'application/json 改成 json 即可


wx.request({
  url: 'test.php', //仅为示例,并非真实的接口地址
  data: {
     x: '' ,
     y: ''
  },
  header: {
      'content-type': 'json'
  },
  success: function(res) {
    console.log(res.data)
  }
})




你可能感兴趣的:(微信小程序)