Como verificar o registro excluir com sucesso no nó MongoDB JS
Model.remove({ _id: req.body.id }, function(err) {
if (!err) {
message.type = 'notification!';
}
else {
message.type = 'error';
}
});
Depressed Dotterel