MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Rückgabewert vom Rückruf in node.js und Mungo

Sie benötigen eine Callback-Funktion, da dies eine asynchrone Anfrage ist:

function authenticate(accesskey, callback)  {
    var auth = null;

    userModel.findOne({'uid': accesskey}, function(err, user) {
        console.log("TRY AUTHENTICATE");

        if (err) {
            console.error("Can't Find.!! Error");
        }

        //None Found
        if (user === null) {
            console.error("ACCESS ERROR : %s  Doesn't Exist", accesskey);
            auth = false;
        } else {
            console.log(user);
            auth = true;
        }

        callback(auth);
    });
}

Und rufen Sie diese Funktion wie folgt auf:

authenticate("key", function (authResult) {
    //do whatever
});