2

在 Meteor.binEnvironment 中已经存在的函数中,当我运行时<collection>.find ({}),我会收到错误throw new Error ('Can \' t wait without a fiber '); 如果您将该调用也放在其中Meteor.bindEnvironment(<collection>.find ({})),则错误消息变为:throw new Error (noFiberMessage);

有问题的功能贯穿Meteor.methods ({}) 我哪里出错了?

重现错误的示例:

Meteor.methods({
  "teste" : Meteor.bindEnvironment(function(){
    var Future = Meteor.require('fibers/future');
    var future = new Future();
    setTimeout(function(){
      return future.return(Sessions.findOne({}))
    }, 15000);
    console.log('fut', future.wait());
  })
});
4

2 回答 2

1

我无法在我的项目中应用建议的解决方案,目前这样做:

Meteor.methods({
  "teste" : Meteor.bindEnvironment(function(){
    var Fiber = Meteor.require('fibers');
    var Future = Meteor.require('fibers/future');
    var future = new Future();
    setTimeout(function(){
      return future.return(
        Fiber(function(){
          Sessions.findOne({});
        }).run()
      );
    }, 15000);
    console.log('fut', future.wait());
  })
});
于 2014-03-10T02:52:27.837 回答
1

尝试Meteor._wrapAsync改用。

这是一个异步函数的示例,但其他任何函数都可以:

var asyncfunction = function(callback) {
    Meteor.setTimeout(function(){
        callback(null, Sessions.findOne({}))
    }, 15000);
}

var syncfunction = Meteor._wrapAsync(asyncfunction);

var result = syncfunction();

console.log(result);

您可以包装任何异步函数并使其同步并以这种方式绑定光纤。

于 2014-03-03T09:34:26.730 回答