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);
}
谁让你这么干的,问的很懵逼