在 forEach 中访问 mongodb 中的查询字段

Access query fields in mongodb inside forEach

在 mongodb 中,我们可以在 find() 方法上使用 forEach() 来迭代集合中的文档。现在的问题是我们能否访问 forEach 中的查询字段。例如:-

db.mycollection.find({name : 'Mike'}).forEach(function(document) {
    // var firstName = name;
})

我们可以做这样的事情吗?或者我们可以使用什么替代方法?请帮忙。

你快完成了,试试下面的代码:

db.mycollection.find({name : 'Mike'}).forEach(function(document) {
    var firstName = document.name; // Just use the . operator
    print(firsName)
    // Rest of your operations.
})