2

我遇到了 node-orm2 的异步行为问题。我有一个这样的查询:

req.models.posts
   .find(...)
   .order('-whatever')
   .each(doMagic) //Problem happens here
   .filter(function(post) { ... })
   .get(callback);

function doMagic(post, i) {

    post.getMagic(function(err, magic) {
        ...
    });     
};

我的问题是,由于内部发生的事情post.getMagic()是异步的,所以我的回调函数会在doMagic完成之前执行。检查源代码我确认这是正常行为,但由于这是一个快速应用程序,我的服务器响应错误信息。

我尝试使用waitfor进行getMagic同步调用,但没有成功。这可能是我缺少的东西。有没有办法让each函数像同步map函数一样工作?

4

1 回答 1

1

更改您的代码以获取帖子,一旦您使用 async.js 对其进行迭代并完成发送响应。

就像是:

var async = require('async');

req.models.posts
    .find(...)
    .order('-whatever')
    .each()
    .filter(function(post) {...
    })
    .get(function(posts) {

        //iterate over posts here
        async.eachSeries(posts, function(file, callback) {
            post.getMagic(function(err, magic) {

                //here comes the magic

                //and then callback to get next magic
                callback();

            });
        }, function(err) {

            //respond here

        });

    });
于 2015-05-14T13:32:39.483 回答