2

所以我试图用五行填充数组“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]

4

1 回答 1

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;
}
于 2013-06-24T18:08:19.880 回答