如何在骨干中将新模型添加到集合中时避免触发更改事件?

时间:2014-05-07 02:00:27

标签: javascript backbone.js

现在我已经定义了一个集合,并且绑定了添加和更改事件监听器,但是当添加新模型时,将触发更改事件。

collection.bind('add',addMethod);
collection.bind('change',changeMethod);

如何避免触发更改事件?

1 个答案:

答案 0 :(得分:1)

如评论中所述,当您向集合中添加内容时,请向该函数调用添加silent-option。查看Backbonejs reference了解详情。

collection.add(someModel, {silent: true});