我试图在客户端的meteor集合中查询数组中的特定元素,但是minimongo不支持$operator。是否有其他方法可以筛选我的查询,使其只返回数组中的特定元素?
我的收藏结构如下:

{
  "userID": "abc123",
  "array": [
    {
      "id": "foo",
      "propA": "x",
      "propB": "y"
    },
    {
      "id": "bar",
      "propA": "a",
      "propB": "b"
    }
  ]
}

我试图编写一个查询,只返回id为“foo”的数组中的对象。在Mongo中,该查询是这样的:
collection.find({
  "userID": "abc123",
  "array.id": "foo"
}, {
  "array.$": 1
});

但是,minimongo在预测中不支持$operator,所以这会抛出一个错误。我使用$elemmatch尝试过类似的结构化查询,并尝试了solution described here,但它没有完成我要做的工作。
是否有其他方法可以使用minimongo查询此数组中的一个元素?

最佳答案

可以使用findWhere提取数组中的第一个匹配对象。试试这样的东西:

// Find all documents matching the selector.
const docs = Collection.find({ userId: 'x', 'array.id': 'y' }).fetch();

// For each document, find the matching array element.
for (let doc of docs) {
  let obj = _.findWhere(doc.array, { id: 'y' });
  console.log(obj);
}

07-28 10:09