我在 mongodb 中有一个通用功能。
db.system.js.save({_id: "Apps",value : function (doc, targetCollection) {
while (1) {
var cursor = db.targetCollection.find( {}, { App_id: 1 } ).sort( { _id: -1 } ).limit(1);
var seq = cursor.hasNext() ? cursor.next().App_id + 1 : 1;
doc.App_id = seq;
db.targetCollection.insert(doc);
var err = db.getLastErrorObj();
if( err && err.code ) {
if( err.code == 11000 /* dup key */ )
continue;
else
print( "unexpected error inserting data: " + tojson( err ) );
}
break;
}
}
});
我需要通过nodejs使用mongoose将这个函数保存在mongodb中。
请帮助我做到这一点。