我试图使用:
["test1", "test2", "users"...]
为了获取meteor数据库中的所有集合名称,但它返回一个非常长的JSON,其中我无法找到纯集合名称。 (见附图)
如何以下列格式获取流星集合名称:
key.characters.indexOf(char)
答案 0 :(得分:6)
好的,这是工作代码,谢谢@PaulS。
db = MongoInternals.defaultRemoteCollectionDriver().mongo.db;
collections = db.listCollections();
collections.each(function(n, collection){
if(collection){
console.log( collection.name );
}
});