MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

A volte i dati non vengono visualizzati nel browser

Il più semplice ma NON RACCOMANDATO il modo per fare ciò che vuoi sarebbe il codice qui sotto, ma di solito porta a un inferno di richiamata o Piramide del destino ed è difficile da leggere, quindi non usarlo !!!!

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",{})
            })    
         }) 
      })
   })    
})

un altro modo potrebbe essere quello di utilizzare 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",{})
});

e infine Promise Non l'ho provato o usato, quindi non sono sicuro al 100% ma qualcosa del genere

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",{})
})

Dai un'occhiata qui per ulteriori dettagli sulle promesse su mangusta Come usare la mangusta Promise - mongo