wx.request出现400 bad request的问题

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

上边是官方的代码,在开发者工具更新后,header格式改为如下

header:{
    "Content-Type":"json"
},

就可以了

posted @ 2017-12-22 07:20  Basu  阅读(894)  评论(0编辑  收藏  举报