为此,请使用的概念forEach()
。首先让我们创建一个包含文档的集合-
> db.printDocuementValueDemo.insertOne({"InstructorName":"John Smith"}); { "acknowledged" : true, "insertedId" : ObjectId("5cd6804f7924bb85b3f48950") } > db.printDocuementValueDemo.insertOne({"InstructorName":"Sam Williams"}); { "acknowledged" : true, "insertedId" : ObjectId("5cd680577924bb85b3f48951") } > db.printDocuementValueDemo.insertOne({"InstructorName":"David Miller"}); { "acknowledged" : true, "insertedId" : ObjectId("5cd680637924bb85b3f48952") }
以下是在find()
方法的帮助下显示集合中所有文档的查询-
> db.printDocuementValueDemo.find().pretty();
这将产生以下输出-
{ "_id" : ObjectId("5cd6804f7924bb85b3f48950"), "InstructorName" : "John Smith" } { "_id" : ObjectId("5cd680577924bb85b3f48951"), "InstructorName" : "Sam Williams" } { "_id" : ObjectId("5cd680637924bb85b3f48952"), "InstructorName" : "David Miller" }
以下是在MongoDB shell中打印文档值的查询-
> db.printDocuementValueDemo.find( { _id : ObjectId("5cd680577924bb85b3f48951") }, {InstructorName: 1, _id:0} ).forEach(function(myDocument) { print(myDocument.InstructorName); });
这将产生以下输出-
Sam Williams