我想查找元素 0 为 的所有ingredients
文档apple
。所以我想获得文档 1 和 3,而不是 2。这样的事情在 Mongo 中是否可能?
这个例子没有意义,但是我的应用程序太复杂了,不能放在这里。
{
_id => 1
name => 'best smoothie'
ingredients => Array
(
[0] => apple
[1] => raspberry
[2] => orange
[3] => banana
)
}
{
_id => 2
name => 'summer smoothie'
ingredients => Array
(
[0] => lemon
[1] => mint
[2] => apple
)
}
{
_id => 3
name => 'yogurt smoothie'
ingredients => Array
(
[0] => apple
[1] => blueberry
)
}
借用的示例 -使用 Mongo 查询数组元素。