请多多包涵,因为我是 JS 新手,并且在使用 Meteor 实现某些事情时遇到了麻烦。我用 JavaScript 实现了一个类
function Class() {
this.property = 0
this.method = function () {
return "method called"
}
}
我使用 new Meteor.collection 制作了一个新的 Meteor Collection bu,并成功检索了客户端上的数据,并且可以在 html 模板中显示 Class.property。但是,我无法访问 Class.method 并且想知道是否有任何方法可以实现这一点,以及使用 Meteor.methods 定义将 Class 实例作为输入的函数是否是最好的方法。