微信小程序云开发,对象数组条件查询结果没有筛选,全量返回了?
第一种写法: const db = wx.cloud.database() const _ = db.command db.collection('vegetable_list').where({ list:{ kind:'根茎类' } }).get({ success: res => { console.log("res:", res.data) }, fail: err => { console.log("error:", err) } }) 第二种写法: db.collection('vegetable_list').where({ list:_.elemMatch({ kind:'根茎类' }) }).get({ }) 都是全量返回,筛选条件没起作用!求官方同学尽快帮忙解决一下