等待所有查询完成并异步填充同时

时间:2015-02-26 00:59:25

标签: node.js promise bluebird knex.js

我想用其他查询填充查询结果的每个对象,我想以异步方式完成所有操作

以下是我实际操作方式的一个示例

var q = knex.select().from('sector');
q.then(function (sectores) {
    var i = -1;
    (function getDetalles(sectores) {
        i++;
        if(i < sectores.length){
            knex.select().from('sector_detalle')
            .where('sector_id', sectores[i].id)
            .then(function (detalles) {
                // this what i want to do asynchronously
                sectores[i].sector_detalles = detalles;
                console.log(sectores[i]);
                getDetalles(sectores);
            });
        } else {
            res.send({sucess: true, rows: sectores});
        }
    })(sectores);
});

我做了一些研究并找到了这个wait for all promises to finish in nodejs with bluebird 接近我想要的但不知道如何实施

1 个答案:

答案 0 :(得分:0)

我认为您正在寻找适用于数组承诺的map method,并将为其中的每个项调用异步(承诺返回)回调:

knex.select().from('sector').map(function(sector) {
    return knex.select().from('sector_detalle')
    .where('sector_id', sector.id)
    .then(function(detalles) {
        sector.sector_detalles = detalles;
        // console.log(sector);
        return sector;
    });
}).then(function(sectores) {
    res.send({sucess: true, rows: sectores});
});