我在 /client/main.coffee 中的新客户端代码
Xingyun = Meteor.connect "localhost:3000"
System = new Meteor.Collection "system", Xingyun
Meteor.subscribe "system"
在我的原始流星代码中,“系统”已发布,“系统”集合包含一个文档。我可以用“System.find().count()”来验证它。
在我的新客户端浏览器上,“System.find().count()”总是返回 0。