watch监听不到任何数据?
appid:wx77fd3d8637d2cd34
调试库版本:2.10.1
数据库权限:所有用户可读
where({}).get()能获取到数据的
监听不到任何数据
const watcher = db.collection('itemBank')
.where({}).watch({
onChange: function(snapshot) {
console.log('snapshot', snapshot)
},
onError: function(err) {
console.error('the watch closed because of error', err)
}
})