几天来,我一直试图在回调中执行代码,但我不确定我做错了什么。以下是我要执行的代码。由于某种原因,即使序列增加,回调也没有被执行。
请帮忙。
var seqCollection = new mongodb.Collection(client, 'seq');
seqCollection.findAndModify(
{"_id": "name"}, [], {$inc: {"seq": 1}}, {},
function (err, result) {
if (err){
console.log('--------- There is a an error ------------');
} else{
console.log('--------- New Value:' + JSON.stringify(result) + '------------');
}
});