0

想象一下,您正在一个名为 Fetch 的 javascript 函数中执行以下操作。

function Fetch(context)
{
  var request = $.ajax({...});
  request.done(function(response)
  {
    // it looks like context is visible here and in Scope.
    //
  });

}

你能解释一下为什么在回调函数中上下文是可见的吗?

4

1 回答 1

1

context是本地的Fetchrequest在内部声明Fetch,因此context在内部可用request

于 2013-09-10T16:57:44.227 回答