我刚刚涉足了服务器端 javascript 的美妙世界,并且仍然掌握了异步处理的窍门。在搞砸了一个节点项目之后,我意识到这个 javascript 就像我过去的很多女朋友一样——他们只是不会回调。无论如何,我希望有人可以帮助我......这是代码,下面有解释:
//this is the function I'm calling to
function queryDb(connection, sql){
connect(connection, function(){
connection.query(sql, function(err, results){
if(!err){
return results;
end(connection);
}
else{
throw err;
}
});
});
}
这是我打电话的地方。在调用之后我想要执行一些代码,但直到这个函数完成处理(它实际上是对数据库的查询,所以需要更长的时间,我的 js 只是继续运行)。
var queryResults = db.queryDb(db.connection, "SELECT * FROM Clients");
if(queryResults){
console.log(queryResults);
req.dbResults = queryResults;
next();
}
else{
console.log('The query results where not returned here is the queryResults variable: ' + queryResults);
}
我想要发生的是从父函数返回的结果,然后由子函数运行的回调对结果进行处理。我试过这个:
queryDb(db.connection, "SELECT * FROM Clients", function(){
if(results){
console.log(results);
req.dbResults = results;
next();
}
else{
console.log('The query results where not returned here is the queryResults variable: ' + results);
}
});
但是我无法在“调用函数”的回调中访问父函数返回的结果。