这个咖啡脚本代码(rails 服务器)导致 midori 使用越来越多的内存,因此显然包含内存泄漏。这导致我的 pi 在几个小时后崩溃。谁能帮我确定泄漏的来源?
jQuery ->
title = ""
dir = ""
window.setInterval ->
$.get('p_status', (response) ->
title = jQuery.parseJSON(response.title)
dir = jQuery.parseJSON(response.dir)
$("#current_title").html(title)
$("#main_c").attr("src", dir))
, 8000
我也尝试了以下代码,但无济于事..:
jQuery ->
title = ""
dir = ""
ref_current_title = $("#current_title")
ref_main_c = $("#main_c")
window.setInterval ->
$.get('p_status', (response) ->
title = jQuery.parseJSON(response.title)
dir = jQuery.parseJSON(response.dir)
ref_current_title.html(title)
ref_main_c.attr("src", dir))
编辑:为了完整起见,生成的javascript:
(function() {
jQuery(function() {
var title, dir, ref_current_title, ref_main_c ;
title = "";
dir = "";
ref_current_title = $("#current_title");
ref_main_c = $("#main_c");
return window.setInterval(function() {
return $.get('p_status', function(response) {
title = jQuery.parseJSON(response.title);
dir = jQuery.parseJSON(response.dir);
ref_current_title.html(title);
return ref_main_c.attr("src", dir);
}
});
}, 8000);
});
}).call(this);