如何在 mongo shell 中查看文档字段?

发布于 2024-11-05 14:26:15 字数 332 浏览 0 评论 0原文

有没有办法在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

寄意 2024-11-12 14:26:15

更简单:

Object.keys(db.messages.findOne())

Even easier:

Object.keys(db.messages.findOne())
这样的小城市 2024-11-12 14:26:15

for ... in 循环应该可以解决问题:

> var message = db.messages.findOne();
> for (var key in message) {
... print(key);
... }

A for ... in loop should do the trick:

> var message = db.messages.findOne();
> for (var key in message) {
... print(key);
... }
紫瑟鸿黎 2024-11-12 14:26:15

其他答案都是正确的。

然而,由于我是全新的,我不明白在哪里&需要如何执行上述命令。

下面有帮助,来自 我的 github< /a>.
在 Windows 上:在命令提示符 (cmd) 中运行此代码。
在 Mac 或 Linux 上:在终端窗口中运行此代码。

// ------------
// start mongo client
mongo

// ------------

// list all databases
show dbs
// NOTE: assume one of the databases is myNewDatabase

// use the 'myNewDatabase' database
use myNewDatabase

// ------------

// show all collections of 'myNewDatabase' database
show collections
// NOTE: assume one of the collections is 'myCollection'

// show all documents of 'myCollection' collection
db.myCollection.find()

// ------------

// field keys
Object.keys(db.myCollection.findOne());

// values
db.myCollection.find().forEach(function(doc) {
    for (field in doc) {
        print(doc[field]);
    }
});

// ------------

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.

// ------------
// start mongo client
mongo

// ------------

// list all databases
show dbs
// NOTE: assume one of the databases is myNewDatabase

// use the 'myNewDatabase' database
use myNewDatabase

// ------------

// show all collections of 'myNewDatabase' database
show collections
// NOTE: assume one of the collections is 'myCollection'

// show all documents of 'myCollection' collection
db.myCollection.find()

// ------------

// field keys
Object.keys(db.myCollection.findOne());

// values
db.myCollection.find().forEach(function(doc) {
    for (field in doc) {
        print(doc[field]);
    }
});

// ------------
你与昨日 2024-11-12 14:26:15

要获取 MongoDB 集合中使用的所有字段的列表,这是我发现最简单的方法(您的情况可能会有所不同:)):

创建一个包含以下内容的 .js 文件:

use yourdbname
mr = db.runCommand({
  "mapreduce" : "collectionName",
  "map" : function() {
    for (var key in this) { emit(key, null); }
  },
  "reduce" : function(key, stuff) { return null; },
  "out": "collectionName" + "_keys"
})
db[mr.result].distinct("_id")

我发现了如何执行此操作 这里(GeoffTech 博客)

我从 shell 运行它在控制台中打印输出

mongo < nameOfYourFile.js 

或将输出转储到文本文件中:

mongo < nameOfYourFile.js > outputDir\nameOfYourOutputFile.txt

我对 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:

use yourdbname
mr = db.runCommand({
  "mapreduce" : "collectionName",
  "map" : function() {
    for (var key in this) { emit(key, null); }
  },
  "reduce" : function(key, stuff) { return null; },
  "out": "collectionName" + "_keys"
})
db[mr.result].distinct("_id")

I found out how to do this here (GeoffTech blog)

I ran it from the shell to print the output in the console

mongo < nameOfYourFile.js 

or dump the output in a text file:

mongo < nameOfYourFile.js > outputDir\nameOfYourOutputFile.txt

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)

爱已欠费 2024-11-12 14:26:15

可以以一种获取所有字段的方式来执行此操作,即使集合中并非每个文档都有其中一些字段,并且无需创建集合:

    return db.collectionName.aggregate( [
      { $project : { x : { $objectToArray : "$ROOT" } } },
      { $unwind : "$x" },
      { $group : { _id : null, keys : { $addToSet : "$x.k" } } },
    ] ).toArray()[0].keys.sort();

这也是添加到 Mongo shell 的一个方便的方法,您可以通过将其包含在主目录中的 .mongorc.js 文件来实现:

Object.assign( DBCollection.prototype, {
  getAllFieldNames() {
    return db[ this._shortName ].aggregate( [
      { $project : { x : { $objectToArray : "$ROOT" } } },
      { $unwind : "$x" },
      { $group : { _id : null, keys : { $addToSet : "$x.k" } } },
    ] ).toArray()[0].keys.sort();
  },
} );

然后您可以在使用 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:

    return db.collectionName.aggregate( [
      { $project : { x : { $objectToArray : "$ROOT" } } },
      { $unwind : "$x" },
      { $group : { _id : null, keys : { $addToSet : "$x.k" } } },
    ] ).toArray()[0].keys.sort();

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:

Object.assign( DBCollection.prototype, {
  getAllFieldNames() {
    return db[ this._shortName ].aggregate( [
      { $project : { x : { $objectToArray : "$ROOT" } } },
      { $unwind : "$x" },
      { $group : { _id : null, keys : { $addToSet : "$x.k" } } },
    ] ).toArray()[0].keys.sort();
  },
} );

Then you can just do db.myCollection.getAllFieldNames() when using the shell..

爱人如己 2024-11-12 14:26:15
var task = db.task.find().next()
for (let key in task){print(key)}

在此处输入图像描述

var task = db.task.find().next()
for (let key in task){print(key)}

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文