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

时间:2011-05-05 16:00:17

标签: mongodb

有没有办法在mongo的shell中找出文档中的字段/键?举个例子,假设我们有一个类似(伪代码)的文档:

{
    "message": "Hello, world",
    "from": "hal",
    "field": 123
}

我想在shell中运行一个命令,返回该文档中的字段/键列表。例如,像这样:

> var message = db.messages.findOne()
> message.keys()
... prints out "message, from, field"

谢谢!

6 个答案:

答案 0 :(得分:55)

更容易:

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

答案 1 :(得分:10)

for ... in循环可以解决这个问题:

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

答案 2 :(得分:3)

其他答案正确。

但是,由于我是一个全新的人,所以不了解上述命令在何处以及如何执行:

以下来自my github的帮助
在命令提示符下运行以下命令(对于Windows为cmd):

// ------------
// 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]);
    }
});

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

答案 3 :(得分:0)

要获取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")

我发现了如何执行此操作here (GeoffTech blog)

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

mongo < nameOfYourFile.js 

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

mongo < nameOfYourFile.js > outputDir\nameOfYourOutputFile.txt

我对MongoDb完全陌生,所以我希望无论在整个文档中使用哪个领域都确实能够获得所有字段!

(我在Windows 10上使用MongoDb,所以我的控制台可能与你的不同)

答案 4 :(得分:0)

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

enter image description here

答案 5 :(得分:0)

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

    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() ..