调用Email.send后,Meteor [错误:不能没有光纤等待]

时间:2015-09-23 21:40:40

标签: meteor callback timeout fiber

我使用Meteor创建了一个非常简单的服务器,在超时后发送电子邮件。当我使用超时时,消息已成功发送但引发错误:[Error: Can't wait without a fiber]

这是我的代码:

if (Meteor.isServer) {
  Meteor.startup(function () {
    // <DUMMY VALUES: PLEASE CHANGE>
    process.env.MAIL_URL = 'smtp://me%40example.com:PASSWORD@smtp.example.com:25';
    var to = 'you@example.com'
    var from = 'me@example.com'
    // </DUMMY>
    // 
    var subject = 'Message'
    var message = "Hello Meteor"

    var eta_ms = 10000
    var timeout = setTimeout(sendMail, eta_ms);
    console.log(eta_ms)

    function sendMail() {
      console.log("Sending...")
      try {
        Email.send({
          to: to,
          from: from,
          subject: subject,
          text: message
        })
      } catch (error) {
        console.log("Email.send error:", error)
      }
    }
  })
}

我知道我可以使用Meteor.wrapAsync创建光纤。但是wrapAsync期望有一个回调来调用,而Email.send不会使用回调。

我该怎么做才能摆脱错误?

1 个答案:

答案 0 :(得分:10)

这是因为当你的Meteor.startup函数在光纤内运行时(就像几乎所有其他Meteor回调一样),你使用的setTimeout不会!由于setTimeout的性质,它将在您定义和/或调用函数的光纤之外的顶部作用域上运行。

要解决此问题,您可以使用Meteor.bindEnvironment

之类的内容
setTimeout(Meteor.bindEnvironment(sendMail), eta_ms);

然后每次拨打setTimeout都这样做,这是一个非常难的事实 好事它并不是真的。只需使用Meteor.setTimeout而不是原生的:

Meteor.setTimeout(sendMail, eta_ms);

来自文档:

  

这些功能就像它们的原生JavaScript等价物一样。如果您调用本机函数,则会收到错误消息,指出Meteor代码必须始终在光纤内运行,并建议使用Meteor.bindEnvironment

流星计时器只需bindEnvironment then delay the call即可。