收藏
回答

云函数 数据库插入新数据 找不到字段?

db.collection('RaidHistory').where({

          RaidID:id

        }).get({

        }).then(res => {

          console.log(res.data.length)

      if (res.data.length == 0){

        db.collection('RaidHistory').add({

          data:{

            RaidID:result[i].RaidID,

            Brand:result[i].Brand,

            Leader:result[i].Leader,

            Time:result[i].Time,

            AllMoney:result[i].AllMoney,

          }

        })

      } 

    })

报错:reason: TypeError: Cannot read property 'RaidID' of undefined

最后一次编辑于  2020-09-10
回答关注问题邀请回答
收藏

1 个回答

  • 哄哄
    哄哄
    2020-09-11

    是get打印还是add打印的?函数将RaidID作为变量了,明显不是get那边的问题,加引号试一试

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