我有 2 个模型,用户和朋友。在朋友中,我有 2 列(UserId1,UserId2)我想在指定 UserId1 的朋友行中找到,然后从包含这些行的表中我想返回带有 Id = UserId2 的用户的表
index: function(req, res, next) {
Friend.find({UserId1 : req.session.User.id}, function foundUsers(err, friends) {
if (err) return next(err);
// pass the array down to the /views/index.ejs page
res.view({
friends: friends
});
});
}
上面的代码返回带有指定 UserId1 的 Friends(UserId1, UserId2) 的表,但是如何返回带有 Id = UserId2 的用户(来自模型用户)的表?