0

在我看来,我有多个听众initialize,看起来像这样:

this.collection.on('reset', this.render);

this.collection.on('add', this.render);

this.collection.on('change', this.render);

我很好奇是否有办法将它们全部结合起来,因为它们都会发射render

4

1 回答 1

5

可能你可以试试

this.collection.on("reset add change", this.render);

看看这个。它可以在此处显示,但不确定是否将其与默认集合事件绑定。

于 2012-11-05T14:59:04.910 回答