微信小程序云开发的官方例子:
const db = wx.cloud.database() //获取数据库的引用
const _ = db.command //获取数据库查询及更新指令
db.collection("china") //获取集合china的引用.where({ //查询的条件指令wheregdp: _.gt(3000) //查询筛选条件,gt表示字段需大于指定值。}).field({ //显示哪些字段_id:false, //默认显示_id,这个隐藏city: true,province: true,gdp:true}).orderBy('gdp', 'desc') //排序方式,降序排列.skip(0) //跳过多少个记录(常用于分页),0表示这里不跳过.limit(10) //限制显示多少条记录,这里为10.get() //获取根据查询条件筛选后的集合数据.then(res => {console.log(res.data)}).catch(err => {console.error(err)})
如果查询出的结果为空[] ,说明数据库的权限设置有问题

修改为当前权限即可;

















