云数据库.field出现BUG
云数据库查询时,where和field同时使用,field无效,下面的代码中field字段必须同时为true,如果有一个不一致就没有查询结果,如何解决,请指导。 const re = await db.collection('XXXX').where({ opid: event.userInfo.openId, }).field({ _id: true, opid: false, wxnm: true, yhnm: true, yhlx: true, fxid: true, fxcs: true, fxjf: true, dlcs: true, dldt: true, }).get(); } })