如何提前终止 MongoDB shell 脚本?


若要提前终止 MongoDB shell 脚本,您需要使用 quit。以下是语法

quit()
quit(1)

让我们创建一个脚本,并尝试在 shell 中编写 quit() 或 quit(1)。首先,我们将使用文档创建以下集合

> db.flightInformation.insertOne({"FlightName":"Flight-1","ArrivalTime":new ISODate("2019-03-12")});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5ca1e341e941bbb0e8bf5639")
}
> db.flightInformation.insertOne({"FlightName":"Flight-2","ArrivalTime":new ISODate("2019-03-31")});
{
   "acknowledged" : true,
   "insertedId" : ObjectId("5ca1e351e941bbb0e8bf563a")
}

以下是使用 find() 方法从集合中显示所有文档的查询

> db.flightInformation.find().pretty();

这将产生以下输出

{
   "_id" : ObjectId("5ca1e341e941bbb0e8bf5639"),
   "FlightName" : "Flight-1",
   "ArrivalTime" : ISODate("2019-03-12T00:00:00Z")
}
{
   "_id" : ObjectId("5ca1e351e941bbb0e8bf563a"),
   "FlightName" : "Flight-2",
   "ArrivalTime" : ISODate("2019-03-31T00:00:00Z")
}
Following is the query to terminate a MongoDB shell script earlier:
> quit();

这将产生以下输出

C:\Users\Amit>

请看以上示例输出,这将从 MongoDB shell 脚本中终止。

更新于: 30 日 7 月 2019

410 次浏览

为您的职业生涯助力

完成课程认证

开始学习
广告