我需要清空一个集合,按顺序删除每个项目。
this.nodes.each(function(node){
this.nodes.remove(node);
}, this);
不起作用,因为随着每个节点被删除,它会改变集合的长度。制作一个临时数组,然后对其进行迭代。有没有更好的办法?
我需要清空一个集合,按顺序删除每个项目。
this.nodes.each(function(node){
this.nodes.remove(node);
}, this);
不起作用,因为随着每个节点被删除,它会改变集合的长度。制作一个临时数组,然后对其进行迭代。有没有更好的办法?
this.nodes.reset()
除非您需要remove
活动 ,否则请尝试。
除此以外:
var nodes = this.nodes;
while (nodes.length > 0)
nodes.remove(nodes.at(0));
另一种清空主干集合的方法:
while ( this.catz.length > 0) this.catz.pop();
如果您需要在迭代时修改集合,请使用for
如下简单的反向操作:
var count = collection.size();
for (var i = count-1; i > -1; i--) {
collection.remove(collection.at(i));
}
http://backbonejs.org/#Collection-reset
你可以打电话collection.reset();
,它会清空整个集合。我今天用了!