如何将所有Meteor Mongo集合名称检索为Javascript数组?

时间:2016-01-01 12:38:43

标签: javascript mongodb meteor

我试图使用:

["test1", "test2", "users"...]

为了获取meteor数据库中的所有集合名称,但它返回一个非常长的JSON,其中我无法找到纯集合名称。 (见附图)

enter image description here

如何以下列格式获取流星集合名称:

key.characters.indexOf(char)

1 个答案:

答案 0 :(得分:6)

好的,这是工作代码,谢谢@PaulS。

db = MongoInternals.defaultRemoteCollectionDriver().mongo.db;
collections = db.listCollections();

collections.each(function(n, collection){
  if(collection){
    console.log( collection.name );
  }
});