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.
可能重复: 如何控制 Ember.js 将呈现的应用程序模板附加到何处?
我有一个现有的应用程序(不是在 ember 中),我正在逐页转换它。所以在过渡期间,我需要能够将 ember 应用程序加载到现有应用程序上的某个容器中,并使其正常运行,例如接受事件等。
做了一个小demo
App = Em.Application.create({ rootElement: '#emberPage' });
请记住Ember.EventDispatcher,只会在该根元素内部侦听,因此请记住,如果在转换期间您试图让 ember 响应页面非 ember 部分的点击。
Ember.EventDispatcher