真机调试报错res is not defined,因为什么?
[图片] 服务端:已经接收到请求,也有数据返回。fmt.Fprint(w, "data", "1234") 小程序:在真机调试下,console.log(res)也不行,一直提示图片上错误。 小程序账号是测试账号 代码: Page({ data: { result: '' }, scanCode: function () { var that = this //往服务端发送请求 var that = this; //var baseURL = "http://192.168.1.125:8090"; var baseURL = "http://192.168.4.7:8090"; var url = baseURL +"/json"; var getPubUrl = baseURL+"/api/user/getPubKey" //请求获取公钥 wx.request({ url: getPubUrl, data:{ "key": "LmQRServer", } , header:{ "content-type": "application/json" // "content-type": "application/x-www-form-urlencoded" }, method:"POST", success (res){ console.log(res.data) } }) } })