Javascript Closure -Local变量嵌套函数

时间:2016-10-27 17:59:29

标签: javascript jquery scope closures global-variables

我正在尝试使用在函数P中定义的变量x,其值我试图在另一个函数中设置。它总是未定义。

我试着用我的头脑来使用闭合,但它只是我的头脑。它不会给我一个字符串而不是一个对象。

逻辑如下。

function P(i){
var x;
if(i!=null){    
//this pulls the data correctly and i could see it in network tab response. 
var dataFromQuery=widgets.DATA.create({
    url:"abc/cde",
    queryTemplate :"/query"+i+ "?"
});
    //we query the data and set the value as per the logic.
     dataFromQuery.query(function(data){
         if(data[0].name){
             x=data[0].name; // this stays undefined , and i understand this is a new local variable x.Also the value is here and comes fine here so no issues with the data but i want to set it to the variable defined outside as x.
         }
     })
}
else{
    x="somehardcode";
}

};

我已经尝试将结果dataFromQuery.query(function(data){存储到var然后将其设置为x,但它又作为一个对象存储,我需要它作为字符串。 感谢

1 个答案:

答案 0 :(得分:-1)

我认为你正在寻找类似的东西:

var P = (function() {
    var x;
    function _P(i) {
        //your internal logic here
    }
    return _P;
})();

x_P都包含在机箱中,并且仅限于自动执行的匿名函数。系统会在外部范围内返回_P var P,但x将保持隐藏状态。