如何在 mongo shell 中查看文档字段?
有没有办法在 mongo 的 shell 中找出文档中的字段/键?举个例子,假设我们有一个类似(伪代码)的文档:
{
"message": "Hello, world",
"from": "hal",
"field": 123
}
我想在 shell 中运行一个命令,返回该文档中的字段/键列表。例如,这样的事情:
> var message = db.messages.findOne()
> message.keys()
... prints out "message, from, field"
Is there a way to figure out the fields/keys in a document while in mongo's shell? As an example, let's say we have a document like (pseudocode):
{
"message": "Hello, world",
"from": "hal",
"field": 123
}
I'd like to run a command in the shell that returns the list of fields/keys in that document. For instance, something like this:
> var message = db.messages.findOne()
> message.keys()
... prints out "message, from, field"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
更简单:
Even easier:
for ... in
循环应该可以解决问题:A
for ... in
loop should do the trick:其他答案都是正确的。
然而,由于我是全新的,我不明白在哪里&需要如何执行上述命令。
下面有帮助,来自 我的 github< /a>.
在 Windows 上:在命令提示符 (cmd) 中运行此代码。
在 Mac 或 Linux 上:在终端窗口中运行此代码。
Other answers are correct.
However, as I am completely new, I didn't understand where & how the above commands need to be executed.
Below helped, from my github.
On Windows: Run this code in a command prompt (cmd).
On Mac or Linux: Run this code in a terminal window.
要获取 MongoDB 集合中使用的所有字段的列表,这是我发现最简单的方法(您的情况可能会有所不同:)):
创建一个包含以下内容的 .js 文件:
我发现了如何执行此操作 这里(GeoffTech 博客)
我从 shell 运行它在控制台中打印输出
或将输出转储到文本文件中:
我对 MongoDb 完全陌生,所以我希望它确实能够获取所有字段,无论整个文档如何使用!
(我在 Windows 10 上使用 MongoDb,所以我的控制台可能与你的不同)
To get a list of all fields used in a collection in MongoDB, this is the way I found most straightforward (your mileage may vary :) ):
Create a .js file with the content:
I found out how to do this here (GeoffTech blog)
I ran it from the shell to print the output in the console
or dump the output in a text file:
I'm totally new to MongoDb so I hope it does indeed get all fields regardless of use throughout the documents!
(I'm using MongoDb on windows 10, so my console may differ from yours)
您可以以一种获取所有字段的方式来执行此操作,即使集合中并非每个文档都有其中一些字段,并且无需创建集合:
这也是添加到 Mongo shell 的一个方便的方法,您可以通过将其包含在主目录中的
.mongorc.js
文件来实现:然后您可以在使用 shell 时执行
db.myCollection.getAllFieldNames()
操作。 。You can do this in a way that gets all the fields even if not every document in the collection has some of them, and without creating a collection:
This is also a handy thing to add to the Mongo shell, which you can do by including it your
.mongorc.js
file in your home directory:Then you can just do
db.myCollection.getAllFieldNames()
when using the shell..