删除集合中的一批记录。
返回一个Promise, resolve结果为删除的记录数。
const cloud = context.cloud; cloud.db.collection('users').deleteMany({ age: {$lt: 18} }).then((res) => { console.log(res) })
(端上调用,缺乏上下文参数,不推荐)