Command .exists(value: boolean): Command参数value: boolean返回值Command示例代码Command.exists(value: boolean): Command 支持端:小程序 2.8.3, 云函数 1.2.1, Web 判断字段是否存在 参数value: boolean返回值Command示例代码找出存在 tags 字段的记录 const _ = db.commanddb.collection('todos').where({ tags: _.exists(true)}).get({ success: console.log, fail: console.error})