wx.request以POST提交,服务端接受不到data中的参数,同样的接口改成GET就可以接收到参数。
描述详细点,最好有代码
加了"content-type" : “application/x-www-form-urlencoded”,服务端还是接收不到参数
服务器收到的包体是什么?
应该是
`code=${res.code}`
wx.request({ url : app.domain+‘WxAPI/auth1’, header: {“Content-Type”: “application/x-www-form-urlencoded”}, method: ‘POST’, data : {code:res.code}, success:function( …