用mongoose查询到多个结果,一起处理后再传给前端页面。
但mongoose提供的回调异步执行,在还没返回时就已经执行到后续代码。
有什么方法能处理吗?
在网上查到,mongoose内置了一个promise,但好像又有说后面已经被取消了?
如果要引入其他组件,有没有什么与mongoose容易配合起来的?目前用的是express4+mongoose。
代码:
imuser.findOne({"id": arg.id}, function(err, data){
//查询当前用户信息
if(err) return handleError(err);
imcontact.find({"id": arg.id}, function(err, docs){
//查询当前用户的联系人id 最后一条信息记录
if(err) return handleError(err);
for(x in contact){
imuser.findOne({"id": contact[x].contactid}).exec(function(err, data){
//因为联系人详细信息存在imuser中,所以循环查询每个联系人,然后加入变量中
});
}
//异步问题 会先输出信息
//输出当前用户信息 和用户联系人的详细信息
res.render('view', {"info": data, "toinfo": contact});
})
});
黄舟2017-04-17 15:48:25
After reading your code, I think you should render to the front end after the for in ends. Then you should write the render in the for in and use a flag to determine the render time. It should be rendered after the last loop, right? , if I understand it correctly, there is also the contact variable that I didn’t see. Is it an object or an array?