如何在 MongoDB 中获取已保存对象?
让我们首先创建一个变量。以下是对其的查询 -
> var studentDetails={"StudentFirstName":"Chris","StudentLastName":"Brown","StudentAge":24};
以下是对其使用 save() 保存记录的查询 -
> db.demo45.save(studentDetails); WriteResult({ "nInserted" : 1 })
使用 find() 方法显示一个集合中的所有文档 -
> studentDetails;
这将生成以下输出 -
{ "StudentFirstName" : "Chris", "StudentLastName" : "Brown", "StudentAge" : 24, "_id" : ObjectId("5e25dab4cfb11e5c34d898ec") }
广告