1.微信开发者工具1.06.2307260版
2.使用wx.request发送网络请求,总是反馈失败,返回“message 不能为空”。但是,使用postman工具发送网络请求却是可以请求成功,正确返回data.
3. wx.request({
url: 'https://wsgh.dl***.org/hymgr/app/checkEDL',
method:'post',
header:{
'content-type': 'application/json', // 默认值
},
data:{
'message':'1NCtDCPIK8LrG5yAe3r1g6R6micSjV/f+z2r+OmG0RdBedSSsP7J8k8dLzdL0bWl',
},
success (res) {
console.log(res.data)
}
})
报错提示:{data: null, info: "message 不能为空", success: false, result: "error"}
4.postman测试成功画面如下:
希望能够给予指导,解决该问题!
改为'Content-Type': 'application/x-www-form-urlencoded'
就好了