MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

return Model.create(arr).exec() não está funcionando no mangusto


O then a função não retorna promessa, o exec faz !

Então você precisa fazer return Comp.remove({}).exec()
Comp.find({}).exec()
.then(function(docs){
    return Comp.remove({}).exec();
})
.then(function(result_of_remove){
    return Comp.create(arr).exec();
})
.then(function(result_of_create){
    ....
})