我正在使用环回。我在 mongodb 中有用户表。
我想要用户表的唯一列名(键)。
我在 mongodb 中找到了以下答案。
mr = db.runCommand({
"mapreduce" : "my_collection",
"map" : function() {
for (var key in this) { emit(key, null); }
},
"reduce" : function(key, stuff) { return null; },
"out": "my_collection" + "_keys"
})
db[mr.result].distinct("_id")
["foo", "bar", "baz", "_id", ...]
但我不确定如何在环回中执行此操作。
谁能告诉我如何在环回中实现上述代码。