在我的项目中,我正在使用需要集合名称来在集合中进行一些搜索的包。我刚刚迁移到 Meteor 1.3,现在这个包不起作用。
在代码包中使用类似:
const search = (collection_name) => {
let collection = this[collection_name]
...
}
现在集合不再在全球范围内。global[collection_name] = Collection
我可以在我的 中添加我的收藏lib/collections.js
,但我更愿意修复包以使其更灵活并且与 Meteor 1.3 兼容。
如果您只知道集合名称,是否有可能获得 Mongo Collection?