使用新的 emberJS RC1 版本,我无法将 containerView 添加为父 containerView 的 childView。
window.App = Ember.Application.create();
App.Router.map(function(){
this.resource("users");
});
App.UsersView = Ember.ContainerView.extend({
init : function(){
this._super();
this.pushObject(Ember.ContainerView.create({
init: function(){
this.pushObject(Ember.View.create({
templateName : 'test1'
}));
}
}));
}
});
这是jsfiddle