所以我试着用五行填充数组“cat”,这将保持每个类别在一个步骤中出现的次数的运行计数。问题是循环执行但它没有逐个输出结果,所以我可以看到每个类别的计数如何上升的进展(时间序列)。所有它都会吐出每个类别的总数
this.cat = [];
this.cat[0] = 0;
this.cat[1] = 0;
this.cat[2] = 0;
this.cat[3] = 0;
this.cat[4] = 0;
this.total = 0;
},
model: vote,
parse: function(data)
{
data = data.response ? data.response : data;
if(data.length == 0)
return;
for (var i = 0; i < data.length; i++) {
this.itemParse(data[i]);
};
return data;
},
itemParse: function(item){
this.cat[item.user_vote_index]++;
this.total++;
console.log(this.cat);
item.cat = this.cat;
item.total = this.total;
console.log(item);
return item;
}
})
})`
这是我的控制台日志
console.log(this.cat);
的console.log(this.cat);
[1, 0, 0, 0, 0] stats.js:33
[1, 0, 0, 1, 0] stats.js:33
[1, 0, 1, 1, 0] stats.js:33
等直到
[8, 6, 1, 2, 1]
这就是我想要存储数据的方式(一次一次迭代); 但是当我控制日志时,集合item.cat为每行提供了[8,6,1,2,1]
答案 0 :(得分:1)
您必须修改itemParse
功能:
itemParse: function(item){
this.cat[item.user_vote_index]++;
this.total++;
// here you have to clone the array instead of creating a reference to it
item.cat = _.clone(this.cat);
item.total = this.total;
return item;
}