3

我想知道是否有任何方法可以检查是否有任何挂起的调用将在某个时候执行,例如来自 AJAX 请求的回调或计时器(setTimeout)。

类似于检查运行 JavaScript 的引擎的整个堆栈。

4

1 回答 1

2

考虑到 AJAX 回调依赖于服务器响应(成功、失败),您无法定义它们是否等待调用,直到实际调用它们。

但这里有一个想法是如何实现这种检查的setTimeout(也许setInterval):

window.timeoutsRegistry = [];

window.oldSetTimeout = window.setTimeout;

window.setTimeout = function(func, delay) {
    var tId = window.oldSetTimeout(function() {
        try {
            func();
        }
        catch (exception) {
            //Do Error Handling
        }
    }, delay);

    var startedAt = (+new Date);

    window.timeoutsRegistry[tId] = {
        id: tId,
        callback: func,
        delay: delay,
        startedAt: startedAt,
        isPending: function () {
            var now = (+new Date);

            return ((startedAt + delay) > now);
        }
    };
};

for(var i =0; i < 10; i++) {
    setTimeout(function() {
        1+1;
    }, 200000);
}


console.log(window.timeoutsRegistry);

var pending = window.timeoutsRegistry.filter(function(element) {
    return element.isPending();
});

console.log(pending);

一些注意事项:

于 2013-12-11T08:11:37.937 回答