我无法使用回调从异步操作中分配变量。 .done
没有为变量赋值。这是我的代码:
var someGlobalVar = 0;
dbs.count('cfs_init').done(function(x) {
console.log('Total : ' + x);
someGlobalVar = x;
});
console.log(someGlobalVar); // 0
我无法使用回调从异步操作中分配变量。 .done
没有为变量赋值。这是我的代码:
var someGlobalVar = 0;
dbs.count('cfs_init').done(function(x) {
console.log('Total : ' + x);
someGlobalVar = x;
});
console.log(someGlobalVar); // 0