我正在编写一个mongoose模式,所以我需要一个可能的字段列表。 请问如何在特定集合中显示所有字段名称,谢谢。
答案 0 :(得分:6)
切换到您正在使用的数据库并输入:
mr = db.runCommand({
"mapreduce" : "myCollectionName",
"map" : function() {
for (var key in this) { emit(key, null); }
},
"reduce" : function(key, stuff) { return null; },
"out": "myCollectionName" + "_keys"
})
获得结果后,输入:
db[mr.result].distinct("_id")
您将获得字段名称列表。