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" },
就可以了