我使用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
不会使用回调。
我该怎么做才能摆脱错误?
答案 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即可。