如果使用post 请求一定要加上 header: { "content-type": "application/x-www-form-urlencoded" } ,如果不加,data 中的参数在后端获取不到
wx.request({
header: { "content-type": "application/x-www-form-urlencoded" },
method: "POST", url: app.globalData.DOMAIN + app.globalData.PROJECT_NAME + app.globalData.GET_MSMCODE_UEL,
data: { "forms": "argu"},
success: (res) => { // 访问成功 console.log(res.data) }, fail: () => { // 访问失败 } })