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

Manchmal werden Daten im Browser nicht angezeigt

Die einfachste, aber NICHT EMPFOHLEN Weg zu tun, was Sie wollen, wäre der Code unten, aber es führt normalerweise zur Callback-Hölle oder Pyramid of Doom und es ist schwer zu lesen, also benutzen Sie das nicht !!!!

Comp.count({}, function(err, count){
   Comp.find({}).remove({}, function(){
      Comp.create(arr, function(err, docs){
         Comp.find({}, ..., function(err, doc){                
            Comp.findOne().skip(random).exec(function(err, result){
                res.render("index",{})
            })    
         }) 
      })
   })    
})

Eine andere Möglichkeit wäre die Verwendung von async.js

async.series([
    function(callback){
        Comp.count({}, function(err, count){
            callback(null, count);
        });
    },
    function(callback){
        Comp.find({}).remove({}, function(){
            callback(null);
        });
    },
    function(callback){
        Comp.create(arr, function(err, docs){
            callback(null);
        });
    },
    function(callback){
        Comp.find({}, ..., function(err, doc){ 
            callback(null);
        });
    },
    function(callback){
        Comp.findOne().skip(random).exec(function(err, lastResult){
            callback(null, lastResult);
        });
    }
],
// optional callback, results is an array of results from each callback if any
function(err, results){
    // results is now equal to [count, lastResult]
    res.render("index",{})
});

und schließlich Promises Ich habe das nicht ausprobiert oder verwendet, also bin ich mir nicht 100 % sicher aber so etwas

var promise = Comp.count({}).exec();

promise.then(function(count) {
    return Comp.find({}).remove({}).exec();
})
.then(function() {
    return Comp.create(arr, ).remove({}).exec();
})
.then(function() {
    return Comp.find({}).remove({}).exec();
})
.then(function() {
    return Comp.find({}).skip(random).exec();
})
.then(function(result) {
    res.render("index",{})
})

Hier finden Sie weitere Details zu Promises auf Mongoose How um Mongoose Promise zu verwenden - Mongo