异步nodejs查询和处理结果

发布于 2024-11-03 09:27:46 字数 1107 浏览 0 评论 0原文

我有一个从 mongodb 获取的对象数组。数组中的每个元素都是一篇文章,作者为 user_id。现在我希望找到与 user_id 相关的用户信息。

由于节点使用异步方法从数据库查找数据,因此 forEach 循环在回调完成之前完成。

docs.forEach(function(doc, index){
        //get the user for this doc
        User.find({_id: mongo.BSONPure.ObjectID(doc.user_id)}, {name: 1, username: 1, email: 1}).skip(0).limit(1).toArray(function(err, user){
            user = user[0]
            if(err) {
                throw new Error(err)
            } else {
                docs[index].user = user
                if(doc.for_id) {
                    User.find({_id: mongo.BSONPure.ObjectID(doc.for_id)}, {name: 1, username: 1, email: 1}).skip(0).limit(1).toArray(function(err, for_user){
                        for_user = for_user[0]
                        if(err) {
                            throw new Error(err)
                        } else {
                            docs[index].for_user = for_user
                        }
                    })
                }
            }
        })
    })

因此,在此循环结束时,如果我发送 cb(docs),则 docs 没有 user 和 for_user 属性。我该如何克服这个问题?

I have an array of objects taken from mongodb. Every element in the array is a post, with author as user_id. Now i wish to find the user info related to the user_id.

Since node uses async methods to find the data from db, the forEach loop finishes before the callbacks finish.

docs.forEach(function(doc, index){
        //get the user for this doc
        User.find({_id: mongo.BSONPure.ObjectID(doc.user_id)}, {name: 1, username: 1, email: 1}).skip(0).limit(1).toArray(function(err, user){
            user = user[0]
            if(err) {
                throw new Error(err)
            } else {
                docs[index].user = user
                if(doc.for_id) {
                    User.find({_id: mongo.BSONPure.ObjectID(doc.for_id)}, {name: 1, username: 1, email: 1}).skip(0).limit(1).toArray(function(err, for_user){
                        for_user = for_user[0]
                        if(err) {
                            throw new Error(err)
                        } else {
                            docs[index].for_user = for_user
                        }
                    })
                }
            }
        })
    })

So at the end of this loop, if i send a cb(docs), docs do not have the user and for_user attribute. How do I overcome this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

海风掠过北极光 2024-11-10 09:27:46

使用Node.js 的步骤。它将按串行顺序运行您的函数

var Step = require('step');

Step(  docs.forEach(...), function() { cb(docs); } );

,或者如果您知道记录总数,则可以在处理完最后一条记录后调用回调。像这样的东西

var count = docs.count(); // or something
var processed = 0;
docs.forEach(... if (++processed == count) cb(docs); );

Use Step for node.js. It will run your functions in serial order

var Step = require('step');

Step(  docs.forEach(...), function() { cb(docs); } );

Or if you know the total number of records, you can call the callback when you're done processing the last one. Something like this

var count = docs.count(); // or something
var processed = 0;
docs.forEach(... if (++processed == count) cb(docs); );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文