我有一个数组,我只存储了userID。如何检索与数组中的ID匹配的所有用户?
e.g。
myArray = ["12341234", "23452345", "34563456", ...];
Meteor.users.find({_id: ???})
答案 0 :(得分:4)
使用$in
运算符:
myArray = ["12341234", "23452345", "34563456", ...];
Meteor.users.find( { _id: { $in: myArray } } )