我想将 ember 与小部件方法(孤立的组件)一起使用,为
Ember 应用程序设置 rootElement,每个应用程序都有自己的路由器和存储(如有必要)。
我在http://jsfiddle.net/4xWep/2/中做了一次不成功的尝试, 也许路由器实例之间存在干扰问题。它已经感觉到这种小部件方法,具有不同的应用程序和路由器?
App1 = Ember.Application.create({
rootElement: '#app1'
});
App1.ApplicationController = Ember.Controller.extend();
App1.ApplicationView = Ember.View.extend({
templateName: 'app1-view'
})
App1.Router = Ember.Router.extend({...})
var App2 = Ember.Application.create({
rootElement: '#app2'
});
App2.ApplicationController = Ember.Controller.extend();
App2.ApplicationView = Ember.View.extend({
templateName: 'app2-view'
})
App2.Router = Ember.Router.extend({...})