我已经在 ember 中设置了一个视图,并像这样在页面上呈现它
App.TestView = Ember.View.extend({
template: Ember.Handlebars.compile('<h1>Heading</h1>')
});
{{view App.TestView}}
但是如果我创建控制器,什么都不会发生
App.TestController = Ember.Controller.extend({
init: function() {
console.log('CONTROLLER HERE');
this._super();
}
});
任何想法为什么会发生这种情况?