现在我已经定义了一个集合,并且绑定了添加和更改事件监听器,但是当添加新模型时,将触发更改事件。
collection.bind('add',addMethod);
collection.bind('change',changeMethod);
如何避免触发更改事件?
答案 0 :(得分:1)
如评论中所述,当您向集合中添加内容时,请向该函数调用添加silent-option。查看Backbonejs reference了解详情。
collection.add(someModel, {silent: true});