删除文档
方式1 通过指定文档ID删除
collection.doc(_id).remove()
// 清理全部数据
collection.get()
.then((res) => {
const promiseList = res.data.map(document => {
return collection.doc(document.id).remove();
});
Promise.all(promiseList);
})
.catch((e) => {
});
方式2 条件查找文档然后直接批量删除
collection.where().remove()
// 删除字段a的值大于2的文档
const dbCmd = db.command
collection.where({
a: dbCmd.gt(2)
}).remove().then(function(res) {
})