是否可以通过回调函数访问函数中的属性?

时间:2018-06-05 18:44:09

标签: javascript callback local-variables

所以我想知道是否可以通过回调函数访问函数中的局部变量。例如,我可以访问'我'函数的变量用于循环。

function forWithAction(r,callback){
  for(let i = 0; i < r; i++){
    callback();
  }
}

forWithAction(5,function(){
  console.log(i);
});

到目前为止我没有运气,但我对这种可能性非常乐观,所以我想知道是否有人可以给我线索或答案。

1 个答案:

答案 0 :(得分:1)

使用您的代码是可能的,但在函数回调中,您希望将您可能想要访问的每个变量传递到函数中。它;如何映射,过滤和减少工作。

function forWithAction(r,callback){
  for(let i = 0; i < r; i++){
    callback(i, r);
  }
}
//iVal and rVal are just place holders for i and r that I'm passing into this function
forWithAction(5,function(iVal, rVal){
  console.log(iVal);
});

地图示例

function Map(arr, callback)
{
  let output = [];
  let secretVariable = 'I\'m hidden inside :D';
  for(let i = 0; i < arr.length; i++)
  {
    //I'm passing 4 values into my callback. So any call back I create
    //I can access these 4 values
    let val = callback(arr[i], i, arr, secretVariable)
    output.push(val);
  }
  return output;
}

let myArray = [2, 5, 1, 8, 9, 3, 2];

Map(myArray, function(val, ind, arr, secret) {
  console.log('__ARRAY_VALUE__: ', val);
  console.log('__INDEX__(i) :', ind);
  console.log(secret);
  return val;
});