收藏
回答

wx.cloud.database().watch()数据改变时回调失败?

有问题的代码:

db.collection('test')
  .where({
    createTime: null,
  })
  .watch({
    onChange: (res) => {
      console.log(res)
    },
    onError: (err) => {
      console.log(err)
},})


修改后的代码(无问题):

db.collection('test')
  .where({
    createTime: false,
  })
  .watch({
    onChange: (res) => {
      console.log(res)
    },
    onError: (err) => {
      console.log(err)
},})


当查询条件中包含null的情况下,监听方法watch只会初始化init一次,后续collection的增删改都不会引起onChange;当将条件改为{ createTime: false }时,则不会出现watch失败的问题。

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

1 个回答

  • xplee
    xplee
    2021-07-12

    不是带了where条件嘛,说明没有符合条件的数据要监听,也就不会回调onChange

    2021-07-12
    有用
    回复
登录 后发表内容