作用:
根據(jù)options配置刪除所有query匹配到的文檔集。
參數(shù):
query: 與find和findOne中query參數(shù)的用法一致
options: 只有一個可用。muti(默認false),允許刪除多個文檔。
callback: 可選,參數(shù): 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) {
});
更多建議: