我是 Mongo 的新手,我正在尝试从find()
查询中检索第一个文档:
> db.scores.save({a: 99});
> var collection = db.scores.find();
[
{ "a" : 99, "_id" : { "$oid" : "51a91ff3cc93742c1607ce28" } }
]
> var document = collection[0];
JS Error: result is undefined
这有点奇怪,因为集合看起来很像数组。我知道使用 检索单个文档findOne()
,但是是否可以从集合中提取一个文档?