node.js - async.map异步查询数据后render界面
伊谢尔伦
伊谢尔伦 2017-04-17 13:47:59
0
3
615
exports.index = function(req, res, next) {
    var result = {};
    var getData = [
        {
            shcema: Car,
            example: 'car_list'
        },
        {
            shcema: Brand,
            example: 'brands'
        }
    ]          
    async.map(getData, function(item, callback){
        // 给result赋值
        // ……
    }, function(err,r){
        // 最终回调渲染无效
        res.render('index', result);
    })

};

如题:在回调里面render界面无效,在map函数下面又拿不到result的值

伊谢尔伦
伊谢尔伦

小伙看你根骨奇佳,潜力无限,来学PHP伐。

全員に返信(3)
大家讲道理
function(item, callback){
    // 是不是这个函数里面忘记调用callbacks?
}

callback一定要去调用,否则下面的function(err, r)就永远不会执行。

いいねを押す +0
小葫芦
var getData = [{
        shcema: 'Car',
        example: 'car_list'
    }, {
        shcema: 'Brand',
        example: 'brands'
    }
]
async.map(getData, (item, callback) => {
    setTimeout(function() {
        console.log(item.shcema);
        callback(null, [item.shcema, item.example]);
    }, 1000);
}, (err,r) => {
    console.log(r); // [ [ 'Car', 'car_list' ], [ 'Brand', 'brands' ] ]
});

map会将所有的结果将汇总到最终的callback里

いいねを押す +0
黄舟

正确调用:

async.map(getData, function(item, callback){
    item.schema.find({},function(err, res){
        callback(null, data[item.examples] = res || []);
    })
},function(err,result){
    if(err){
        console.log(err);
    } 
    res.render('index', data);
})
いいねを押す +0
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート