繁体   English   中英

如何在MongoDB collection.find()上获取函数值

[英]How to get a function value on MongoDB collection.find()

当我在MongoDB / Node / Express中运行collection.find()时,我需要像这样为我的数组返回值,但是要在回调地狱中进行操作。

foursquare.getVenues(params,function(error, venues) {
    if (!error) {
      var places = [];
      venues.response.venues.forEach(function(e) {
        places.push(
          {
          obj_id:e.id,
          name:e.name,
          distance:e.distance,
          here_now:req.collection.findById(e.id) //count- i want need this value
          }
        );
      });
      res.send(places);
    }
  });

您可以尝试使用异步https://github.com/caolan/async#each

var async = require('async');
...
foursquare.getVenues(params, function (error, venues) {
    if (!error) {
        throw err;
    }

    var places = [];
    async.each(venues.response.venues, function (e, callback) {
        db.collection.findById(e.id, function (err, res) {
            places.push({
                    obj_id: e.id,
                    name: e.name,
                    distance: e.distance,
                    here_now: res
                });
            callback()
        });
    }, function (err) {
        if (err) {
            console.log('A file failed to process');
        } else {
            console.log('All files have been processed successfully');
            res.send(places);
        }
    });
});

或使用async.map

var async = require('async');

var createArray = function (e, cb) {
    db.collection.findById(e.id,function(err,res){
        var obj = {
            obj_id: e.id,
            name: e.name,
            distance: e.distance,
            here_now: res
        }
        cb(null, obj);
    });
}


async.map(venues.response.venues, createArray, function (err, places) {
    if(err){
        throw err;
    }
    console.log(places);
});

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM