如果我声明一个全局集合如下:
@Matches = new Meteor.Collection "Matches"
如何在 Meteor 的服务器端和客户端的闭包中找到一致的方式来访问它?
例如,以下不起作用,因为@
引用this
(它不是闭包中的顶级命名空间)
Meteor.publish("current-matches", ->
return @Matches.find(round: 0) # @Matches doesn't work since `this` is something else
)