未捕获的TypeError:Meteor.Cron不是构造函数

时间:2016-05-06 03:37:50

标签: javascript meteor cron

我想在Meteor上使用answer。我在client/index.js中输入了以下代码,但它返回Uncaught TypeError: Meteor.Cron is not a constructor。我该如何解决这个问题呢?

var helloWorld = function () {
       console.log('hello world');
  }
  new Meteor.Cron({
    events: {
       "* * * * *": helloWorld
    }
  });

1 个答案:

答案 0 :(得分:2)

此软件包目前为adds the source file on the server only

这意味着构造函数将无法在客户端上使用。

也就是说,您可以轻松地在本地分叉包并将源文件添加到客户端。我没有看到任何阻止它在那里工作的东西。