微信小程序TypeError: Cannot read property 'message' of undefined

问题如下:

微信小程序TypeError: Cannot read property 'message' of undefined_第1张图片

代码:

  getBroadcast (callback) {
    wx.cloud.callFunction({
      //需要调用的云函数名
      name: 'getBroadcast',
      //传给云函数的参数
      data: {
        hour: new Date().getHours(),
      },
    })//通过promise方式进行成功回调
    .then(res => {
      let data = res.result.data
      // console.log("===data===" + res.result)
      if (data) {
        callback && callback(data[0].message)
      }
    })
  },

目前还没发现好的解决方式,正在查找中。

你可能感兴趣的:(微信小程序,微信小程序-基础)