Benvenuto nello stile asincrono:
- Non dovresti usare throw per il callback, throw va bene per lo stack di funzioni
db.close()
dovrebbe essere nella richiamata, al termine della rimozione.
Esempio:
MongoClient.connect('mongodb://localhost/mochatests', function(err, db) {
db.collection('contacts', {}, function(err, contacts) {
contacts.remove({_id: ObjectID("52b2f757b8116e1df2eb46ac")}, function(err, result) {
if (err) {
console.log(err);
}
console.log(result);
db.close();
});
});
});