云数据库 字段是数组,数组中是否包含某个值,在where中如何写
云数据库 字段是数组,数组中是否包含某个值,在where中如何写
看文档里
const _ = db.command
db.collection('todos').where({ progress: _.in([0, 100])
})
.get({ success: console.log, fail: console.error
})
它是字段是否在数组中,和我的需求相反