当我运行下面的代码时,jQuery 反复将一个 Window 对象放入我的数组中(我确信 JSON 不包含对 Window 对象的任何引用)。有什么方法可以运行它并将 Window 对象排除在我的数组之外?
谢谢
$.getJSON("../php/return_network_data.php",
function(fetch_data){
$.each(fetch_data, function(){
var index = this.id;
node_array[index] = paper.circle(this.xpos_init, this.ypos_init, 10).attr({"fill" : "#ff0000"})
$.each(node_array, function(){
console.log(this);
});
});
}
);