Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
现在我正在解雇这个:
this.collection.remove(item);
Backbone.sync('update', this.collection, null);
它工作得很好,但我希望能够从集合中删除该项目并同步而不刷新 html 视图(我已经使用 jQuery 从页面中删除了该项目)。我知道我可以编写 jQuery 来做到这一点,但如果可能的话,我想让它更接近主干功能。
使用silent选项:
silent
this.collection.remove(item, { silent: true });
这会抑制“删除”事件的触发,因此不会通知视图。