想象一下,您正在一个名为 Fetch 的 javascript 函数中执行以下操作。
function Fetch(context)
{
var request = $.ajax({...});
request.done(function(response)
{
// it looks like context is visible here and in Scope.
//
});
}
你能解释一下为什么在回调函数中上下文是可见的吗?
想象一下,您正在一个名为 Fetch 的 javascript 函数中执行以下操作。
function Fetch(context)
{
var request = $.ajax({...});
request.done(function(response)
{
// it looks like context is visible here and in Scope.
//
});
}
你能解释一下为什么在回调函数中上下文是可见的吗?