使用下面的代码我试图创建动态变量名称,以便稍后在创建/使用Mongo数据库集合时使用,但我收到错误(未定义),如果收集从未创建,所以想知道是否有人可以告诉我我在做错了什么/在这里失踪了?感谢
var global = this;
var collId = 'Test';
console.log(collId); //return undefined...
global[collId] = new Meteor.Collection(collId); //will create a collection with name Test but it is not accessible