Im trying to get the name of a user by looking in up with a id.
query.find(function(err, dat) {
for(i in dat) {
users.findOne({_id: dat[i].owner}, function(userErr, user) {
dat[i].ownerName = user.name;
if(parseInt(i)+1==dat.length) res.render('view', {local: dat});
});
}
});
Hope you guys understand. Im trying to get a name from another selection in a query. But the problem is, that I cant save a variable outside the user query callback. How do i do this the right way? :-)
At the example a post above i only get the last one in the query.