收藏
回答

真机调试报错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)


      }

    })



  }

})


回答关注问题邀请回答
收藏

1 个回答

  • MrDing
    MrDing
    2020-06-08

    是不是没配置合法域名? 关闭安全域名检测试下

    2020-06-08
    有用
    回复
登录 后发表内容
问题标签