有一个简单的 ember.js 应用程序,其中一个视图显示在网页的特定位置。看看这个 jsfiddle:http: //jsfiddle.net/jkkK3/9/
App = Ember.Application.create({
ready: function(){
this._super();
this.ApplicationView.create().appendTo(".content");
},
ApplicationController: Ember.Controller.extend({
}),
ApplicationView: Ember.View.extend({
templateName: 'application'
}),
Router: Ember.Router.extend({
root: Ember.Route.extend({
})
})
});
我的问题是:为什么“这里的一些内容”元素会显示两次?当我删除路由器时它可以工作,但这正是我不能做的,因为我尝试将路由器添加到我的 Ember 应用程序中。你能帮我在红框内只显示一次应用程序视图吗?