6、db.remove(query, options, callback)
作用:
根据 options 配置删除所有 query 匹配到的文档集。
参数:
query: 与 find 和 findOne 中 query 参数的用法一致
options: 只有一个可用。muti(默认 false),允许删除多个文档。
callback: 可选,参数: err, numRemoved
示例:
// 文档集
// { _id: 'id1', planet: 'Mars', system: 'solar', inhabited: false }
// { _id: 'id2', planet: 'Earth', system: 'solar', inhabited: true }
// { _id: 'id3', planet: 'Jupiter', system: 'solar', inhabited: false }
// { _id: 'id4', planet: 'Omicron Persia 8', system: 'futurama', inhabited: true }
// 删除一条记录
// options set to {} since the default for multi is false
db.remove({_id:'id2'},{},function(err,numRemoved){
// numRemoved = 1
});
// 删除多条记录
db.remove({system:'solar'},{multi:true},function(err,numRemoved){
// numRemoved = 3
// All planets from the solar system were removed
});
// 删除所有记录
db.remove({},{multi:true},function(err,numRemoved){
});
当前内容版权归 腾讯AlloyTeam 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 腾讯AlloyTeam .