简单的#meteor订阅调用给出错误

时间:2014-02-06 01:24:13

标签: javascript meteor

服务器:

Meteor.publish('trades', function() {
return Trades.find();
});

客户:

Meteor.subscribe("trades");

两者:

Trades = new Meteor.Collection('trades');

当我运行流星时,它给了我

TypeError:对象#没有方法'subscribe'

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

您可能在根目录/中运行客户端代码。然后它也会在服务器上执行并发出此错误。 (不确定是否这样)。