res is not defined;at "pages/index/index" page lifeCycleMethod onLoad functifunction

错误原因是res未定义。可能是wx.request问题。

正确用法:

    wx.request({
      url: 'https://www.tuziang.com/', 
      data:{
       //传入的参数
      },
       success(res) {
        console.log(res.data) //这样使用res才不会错
      }

    })

res是response的意思,服务器的返回值。