https://developers.weixin.qq.com/miniprogram/dev/api/network-request.html#wxrequestobject
此文档中示例代码有错误
wx.request({ url: 'test.php' , //仅为示例,并非真实的接口地址 data: { x: '' , y: '' }, header: { 'content-type' : 'application/json' // 默认值 }, success: function (res) { console.log(res.data) } }) |
'content-type'
正确为
'Content-Type'
亲测发现 小写并不会对数据进行json序列化
你是如何进行设置的?在哪个平台出现的问题? content-type 默认应该就是 application/json。
OK.已经解决。应该是之前JS代码 未保存导致错误。