wx.request中POST 请求传参为什么要JSON.stringify转换?
wx.request中POST 请求传参为什么要JSON.stringify转换一下? 用JSON.stringify和不用JSON.stringify都能请求成功 wx.request({ url: url, method: 'POST', data: JSON.stringify(data), header: { 'Content-Type': 'application/json' }, success: function(res) { // 请求成功,处理返回的数据 console.log(res.data); }, fail: function(err) { // 请求失败,处理错误信息 console.error(err); }