问题描述
在这样说的:
In backbone.js
documentation it says:
要做出一个方便的事件调度器可以在不同的应用领域之间进行协调事件: VAR调度= _.clone(Backbone.Events)
To make a handy event dispatcher that can coordinate events among different areas of your application: var dispatcher = _.clone(Backbone.Events)
谁能解释如何实现调度员从一个观点传达给antoher?我在哪里必须把code在我的应用程序?
Can anyone explain how to implement the dispatcher to communicate from one view to antoher? Where do i have to place the code in my app?
推荐答案
下面是关于使用event聚合。
谁能解释如何实现调度员从一个观点传达给antoher?我在哪里必须把code在我的应用程序?
您将可能有某种应用程序控制器的对象,这将控制应用程序的流程,创建视图,模型等,这也是事件聚集的好地方。
You will probably have some kind of App Controller object, which will control the flow of the app, creating views, models, etc. This is also a good place for the event aggregator.
不过,我认为,文章解释它pretty很好。
But, I think that article explains it pretty well.
这篇关于Backbone.js的 - 与事件调度VAR调度= _.clone工作(Backbone.Events)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!