0

我在 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中。

请帮助我做到这一点。

4

1 回答 1

1

默认情况下,Mongoose 无法做到这一点。
你应该试试这个包:https ://npmjs.org/package/mongoose-function

于 2013-05-31T12:33:50.407 回答