我无法用语言准确地描述我的想法,所以这里有一个例子:
[
{
'description': 'fruits',
'examples': [
{
'name': 'Apple',
'color': ['red', 'green']
},
{
'name': 'Banana',
'color': 'yellow'
}
]
},
{
'description': 'vegetables',
'examples': [
{
'name': 'Tomato',
'color': 'red'
},
{
'name': 'Carrot',
'color': 'orange'
}
]
},
{
'description': 'Wweets',
'examples': [
{
'name': 'Chocolate',
'color': ['brown', 'black', 'white']
},
{
'name': 'Candy',
'color': 'various'
}
]
}
]
让我们一步一步来:
如果我想查看所有食物类别,我通过以下命令查询
db.food.find()
我想看蔬菜
db.food.find({ 'description': 'vegetables' })
现在假设我忘记了胡萝卜的样子(笑)。我该怎么办?我尝试了以下(本机 node.js MongoDB 驱动程序):
collection.find({'examples.name': 'Carrot'}, function(err, example){
console.log(example)
// It still returns me the whole object!
});
结果,我希望 MongoDB 返回对象的下一个最高实例。例如,我想这样做。
console.log(example.color)
// 'orange'
你有什么主意吗?我是面向文档的数据库的新手:/