第一次保存模型后如何让设置静音
我正在使用backbone.js 和rails。当backbone.js第一次保存模型时,rails会使用新的id进行响应,并且backbone.js会使用新的id对模型进行设置。
http://documentcloud.github.com/backbone/docs/backbone.html #section-41
我的问题是我不能让那组安静。该集调用一个更改事件,导致我的视图呈现。
I'm using backbone.js and rails. When backbone.js saves a model for the first time rails responds with the new id and backbone.js does a set on the model with the new id.
http://documentcloud.github.com/backbone/docs/backbone.html#section-41
My problem is I can't make that set be silent. That set calls a change event which causes my view to render.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在保存方法中传递一个选项以不触发任何事件
You can pass an option in the save method to not trigger any events