我看了这个:从Javascript中的嵌套函数返回值
但这并没有真正帮助我(或者我太笨了,无法理解)。
我的变量范围以某种方式关闭,我不明白为什么。我的 alert() 没有按预期运行。试图在所有行上添加评论以解释我的想法。
非常感谢您的任何评论/指针/答案!
var g = {}; / is a large object with all kinds of other stuff and functions in it
g.ding = function(){ // my problem function
var baby = 'young'; // i thought I set a local var here
if(someVar==true) { // standard issue if statement
someAPI.class( // using an API that uses a function as its attribute
function(stuff){ // my anonymous function
baby = 'old'; // setting the var to something
}
);
}
return baby; // returning the var
}
alert( g.ding() ); // i expect it to say "old" but it keeps saying "young". why?
新编辑: Juan 接受的答案很棒,但是否还有一种方法可以使用setTimeout()来处理异步函数调用并基本上使它们同步?如果任何读过这篇文章的人都知道我很想知道的答案。谢谢。