可能我对 Node 的事件循环理解不够。
假设我有一个foo
包含异步函数的函数async_func
。我有吗
//1
function foo(callback) {
//stuff here
async_func(function() {
//do something
callback();
});
//this eventually get executed
}
或者
//2
function foo(callback) {
//stuff here
async_func(function() {
//do something
return callback();
});
//never executed
}