标签: collections backbone.js listener
我的initialize中有多个监听器供我查看,如下所示:
initialize
this.collection.on('reset', this.render); this.collection.on('add', this.render); this.collection.on('change', this.render);
我很好奇是否可以将所有这些组合在一起,因为它们都会激活render
render
答案 0 :(得分:5)
可能你可以试试
this.collection.on("reset add change", this.render);
看看this。它在那里显示,但不确定是否将它与默认的集合事件绑定。