获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
原来是数据权限的问题,已解决
云数据库如何判断属性存在和不存在呢?比如: 集合中有2条数据 userInfo1 : {id:1,tuan:{a:1,b:2}} userInfo1 : {id:2} 没有tuan这个属性 我用现有的api如何查询出 有tuan属性 的数据呢 const db = wx.cloud.database(); const _ = db.command db.collection('userInfo').where({ 'tuan': _.neq(null) }).get().then(res => { console.log(res) //查询不 })
2018-11-08