正确格式
wx.request({
url: '******************',
header: {
'content-type': 'application/x-www-form-urlencoded'
},
method: 'POST',
data: {
param: "param"
},
success: res => {
console.log(res);
}
})
建议先使用postman或其他接口测试工具确认接口没有问题,然后再检查以下两个问题。
1.header是’application/x-www-form-urlencoded’
2.header在method的上方