如何通过id数组检索用户

时间:2015-04-13 18:22:46

标签: mongodb meteor

我有一个数组,我只存储了userID。如何检索与数组中的ID匹配的所有用户?

e.g。

myArray = ["12341234", "23452345", "34563456", ...];

Meteor.users.find({_id: ???})

1 个答案:

答案 0 :(得分:4)

使用$in运算符:

myArray = ["12341234", "23452345", "34563456", ...];

Meteor.users.find( { _id: { $in: myArray } } )