我不明白 的概念Meteor.subscribe
。它应该从服务器接收记录,并将其附加到具有相同名称的集合中,对吗?
[subscribe] 将对传入的属性进行排队,直到您在客户端上使用匹配的集合名称声明 Meteor.Collection。
那么,为什么文档中的示例使用不同的名称?allplayers和player之间是什么关系?
Meteor.subscribe("allplayers");
...
// client queues incoming players records until ...
...
Players = new Meteor.Collection("players");