我正在使用这个精彩的同步模块synchronize.js - http://alexeypetrushin.github.io/synchronize/docs/index.html。
我遇到过这种情况,我必须将sync'd函数的返回值放入光纤之外的范围内。这是我正在谈论的基本例子:
var records = sync.fiber(function() {
var results = ... // some synchronized function
return results;
});
理论上,records
将包含光纤范围内results
的值。我一直在阅读期货(光纤/期货模块)以及它们如何在这种情况下使用,但我还没有想出任何接近工作的东西。我喜欢一些方向和/或解决方案。
编辑:
有关我想要完成的更全面的例子:
// executes a stored procedure/function
exec: function (statement, parameters) {
init();
var request = new sql.Request(),
results;
processParams(parameters, request);
var res = sync.fiber(function(){
try {
var result = sync.await(request.execute(statement, sync.defers('recordsets', 'returnValue')));
results = result.recordsets.length > 0 ? result.recordsets[0] : [];
return results;
}
catch (e) {
console.log('error:connection:exec(): ' + e);
throw(e);
}
});
// though typical scope rules would mean that `results` has a
// value here, it's actually undefined.
// in theory, `res` would contain the return value from the `sync.fiber` callback
// which is our result set.
return res;
}
正如您在此处所看到的,我想要完成的是从光纤范围获取results
的主要范围。
答案 0 :(得分:2)
现在它支持它,使用以下表格
var records = sync.fiber(function() {
var results = ... // some synchronized function
return results;
}, function(err, results){... /* do something with results */});
答案 1 :(得分:0)
这不是范围问题。这不会起作用,因为return res;
在光纤返回之前执行。这就是为什么它是undefined
。
您需要重写exec
函数才能进行回调。然后你可以在exec
函数本身上使用synchronize.js。