我想在meteor(服务器端)中迭代多个Mongo集合。首先我想检查一个集合是否有任何文件。到目前为止我的代码:varisEmptyCollection=function(name){if(name.find().count()===0){returntrue}else{returnfalse}};varmycollections=["CollectionOne","CollectionTwo","CollectionThree"];for(vari=0;i我得到这个错误:TypeError:ObjectCollectionOnehasnomethod'find'....如果集合有任何