gpt4 book ai didi

javascript - backbone.js 清空一个集合

转载 作者:数据小太阳 更新时间:2023-10-29 06:02:51 24 4
gpt4 key购买 nike

我需要清空一个集合,按顺序移除每一项。

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));

关于javascript - backbone.js 清空一个集合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12936978/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com