从我的路由器,我正在渲染一个视图:
App.MonthSummaryRoute = Ember.Route.extend({
events: {
selectTab: function(name) {
this.render(name, { into: 'month/summary', outlet: 'tab' });
}
}
});
例如,名称是"summaryCompany"
。如果我添加一个
<script type="text/x-handlebars" data-template-name="summaryCompany">
<h2>Test template</h2>
</script>
此模板显示。但我尝试添加一个视图来处理事件:
App.SummaryCompanyView = Ember.View.extend({
didInsertElement: function() {
console.log('here');
}
});
我什么也没得到。我错过了什么?