2

我无法用语言准确地描述我的想法,所以这里有一个例子:

[
  {
    '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'

你有什么主意吗?我是面向文档的数据库的新手:/

4

1 回答 1

2

当您将一堆对象存储在单个文档中时,您将(默认情况下)取回整个文档。[*]

当文档的其中一个字段是数组时,如果在数组中找到您尝试匹配的项目,您将返回完整的数组。

如果您通常只取回这些内容的一个子集,请不要将所有内容都塞进一个文档中。

您有一个替代方案:

您可以存储一组食物,其中每种食物都有一个字段“类型”,即“水果”或“蔬菜”或“......”。您仍然可以查询所有食物,或者只是“水果”类型的食物或名称为“胡萝卜”的食物等。

数组非常适合特定对象/文档的属性列表,当您将文档塞入其中然后您希望将其作为一流对象返回时,它们就没有那么好了。

[*] 有一种方法可以投影并仅获取字段的子集,但您仍将取回整个字段。

于 2012-07-29T23:15:16.927 回答