我有这个对象数组:
[1, 3]
我有这个ID数组:
id
如何选择ID数组中存在collection.find().projection(Projections.include("name", "surname"));
属性的所有对象?
答案 0 :(得分:2)
var ids = [1, 3];
var found = _.where(items, function (item) {
return ids.indexOf(item.id) !== -1;
});