在JavaScript中阻塞等待回调响应

时间:2016-09-29 23:21:17

标签: javascript node.js asynchronous callback node-redis

我正在使用node-redis客户端,并且我试图从我的数据库中检索一个值,然后在回调之外使用它,如下所示:

var dbValue = 0;
client.get("myKey", function(err, reply){
      dbValue = reply;
});

console.log(dbValue) //Right now, this would print 0, though it needs to print the value from the database

在价值更新之前,如何进行阻止?

0 个答案:

没有答案