wx.request以POST提交,服务端接受不到data中的参数,同样的接口改成GET就可以接收到参数。
网友回复:
描述详细点,最好有代码
wx.request({
url : app.domain+'WxAPI/auth1',
header: {"Content-Type": "application/x-www-form-urlencoded"},
method: 'POST',
data : {code:res.code},
success:function( .........................
服务器收到的包体是什么?
应该是
`code=${res.code}`
post一定要加上
header:{
"content-type" : "application/x-www-form-urlencoded"
}
不然无法获取到参数,官方文档并没有进行说明。