防止递归 jQuery AJAX 增加浏览器内存使用量
我使用递归 jQuery AJAX 每秒从服务器回调值。然而,这似乎增加了我的浏览器的内存使用量。
我正在使用 FireFox,并且安装了 FireBug,我认为这是罪魁祸首,因为它会在其控制台中记录每个回调。
我的第一个问题是,我这样说对吗?如果是这样,是否有一种方法可以每分钟左右“刷新”FireBug 来减少记录的回调?
我的代码示例:
function callBack()
{
$.ajax(......);
setTimeout("callback()", 1000);
}
function Init()
{
callBack();
}
Init();
I'm using recursive jQuery AJAX to callback values from the server every second. However, this seems to be incrementing the amount of memory usage my browser has.
I'm using FireFox and I have FireBug installed which I believe to be the culprit as this logs every callback in its Console.
My first question is, am I right in saying this is the case? And if so, is there a way of 'flushing' FireBug every minute or so to reduce the logged callbacks?
Example of my code:
function callBack()
{
$.ajax(......);
setTimeout("callback()", 1000);
}
function Init()
{
callBack();
}
Init();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那不是递归......它只是每秒调用相同的函数。您可以使用 setInterval 来实现相同的目的。
当事件句柄或 dom 引用未正确释放时,通常会发生内存泄漏。检查触发 AJAX 时是否没有对 DOM 元素的引用。并且您不会为每个请求重新初始化事件。
Thats not recursion.. it simply calls the same function every second. You may use setInterval to acheive the same thing.
memory leaks usually occurs when you have event handles or dom references that are not freed properly. Check that you dont have references to DOM elements when the AJAX gets triggered. and that you dont reinitialize events for every request.