admin管理员组文章数量:1344680
mturk_ops.block = function(callback){
mongodb.collection(collectionName, function(err, collection){
collection.distinct('workerId',function(err,result){
var result1 = [];
console.log(result.length);
for(var i=0; i< result.length;i++){
console.log(result[i]);
result1[result[i]] = collection.count({
'workerId':result[i],
"judgementStat" : "majority"
},function(err, count){
// console.log(count);
// globals.push(count);
return count ;
// console.log( worker + ' majority : ' + count);
});
}
console.log(result1);
});
});
}
Here I am trying to print 'result1' but its always printing array with undefined value. 'result1' is an array which is assigned out of the scope of callback function.
mturk_ops.block = function(callback){
mongodb.collection(collectionName, function(err, collection){
collection.distinct('workerId',function(err,result){
var result1 = [];
console.log(result.length);
for(var i=0; i< result.length;i++){
console.log(result[i]);
result1[result[i]] = collection.count({
'workerId':result[i],
"judgementStat" : "majority"
},function(err, count){
// console.log(count);
// globals.push(count);
return count ;
// console.log( worker + ' majority : ' + count);
});
}
console.log(result1);
});
});
}
Here I am trying to print 'result1' but its always printing array with undefined value. 'result1' is an array which is assigned out of the scope of callback function.
Share Improve this question asked Nov 19, 2012 at 11:17 vcxzvcxz 4,1684 gold badges20 silver badges18 bronze badges 1- 1 You can't return it. It has to be passed forward with a new callback. – Max Commented Nov 19, 2012 at 11:20
1 Answer
Reset to default 9You can't return a value from an asynchronous callback. The callback is usually executed some time after the function in which it was declared has returned (that function will continue execution after calling an asynchronous method). There is nowhere for a callback function to return to. Here's a simple example:
function doSomething() {
var x = 10;
doSomethingAsynchronous(function () {
// This is a callback function
return 30; // Where would I return to?
});
x += 10; // Execution continues here as soon as previous line has executed
return x; // doSomething function returns, callback may not have run yet
}
If you need to rely on the result of an asynchronous method, you will need to move the code that requires it into the callback.
本文标签: javascriptHow to return value from nodejs callback functionStack Overflow
版权声明:本文标题:javascript - How to return value from nodejs callback function? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743741220a2530927.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论