我正在使用异步npm的filterSeries但是当我在对象上调用truthy时,由于某种原因它只传递用户而不是试图从查询中取出的部分......
如果你注意到我的代码出了什么问题,或者有更有效的方法来解决这个问题,因为我也听说过循环遍历每个用户并调用查询是一个坏主意,而不是做一个$ in或者其他什么但是不确定如何。
主要的是我希望将这两个文档组合起来并作为数据反馈...
以下是代码:
exports.searchContactPost = function(req, res) {
if(req.body.searchContacts === '') { res.send('Oops you searching for nothing, well here is nothing!'); };
async.waterfall([
function(callback) {
User.find({$or:[
{firstName: req.body.searchContacts.toLowerCase()},
{lastName: req.body.searchContacts.toLowerCase()},
{email: req.body.searchContacts.toLowerCase()}]
}, function(err, users) {
if(err || users.length === 0) { res.send(err);}
callback(null, users)
});
},
function(users, callback) {
async.filterSeries(users, function(user, next) {
console.log(user);
Friend.findOne({userId: req.signedCookies.userid, friend_id: user}, function(err, friend) {
if(err) {
console.log("houston we got a problem.")
}
var object = {'fav': friend.favorites, 'notes': friend.notes, 'labels': friend.labels, 'user': user, 'status':friend.friend_status};
console.log(friend);
next(object.status === 3);
})
}, function(friendResults){
console.log(friendResults);
callback(null, friendResults);
});
}
],
function(err, results) {
res.render('contactListResults', {title: 'Weblio', friendsFound: results});
});
};
答案 0 :(得分:1)
异步过滤器函数接受一系列项目,并根据真或假回调过滤掉该数组中的项目。因此,您将返回传递给过滤器的原始数组的子集。在这种情况下,用户,我相信你试图建立一个朋友对象并返回它,这不会起作用。你应该做的只是在数据库中查询适当状态的所有朋友,而不是使用过滤器。