ルートの1つに、次のようにいくつかのテンプレートをレンダリングします。
Sp.IndexRoute = Ember.Route.extend({
renderTemplate: function(controller, model) {
this.render('index');
this.render('rotatable', {into: 'index', outlet: 'config'}) ;
this.render('clickable', {into: 'rotatable', outlet: 'front'}) ;
this.render('configitem', {into: 'clickable'}) ;
this.render('configuration', {into: 'rotatable', outlet: 'back'}) ;
....
ConfigMenuItemViewというビューがあります
Sp.ConfigMenuItemView = Em.View.extend({
templateName: 'configitem',
...
ただし、configitemテンプレートをレンダリングすると、ConfigMenuItemViewに接続されません。同一の名前(テンプレートの最初の文字が小文字)を付けた場合にのみ機能します。どのビューに接続するかをレンダリング関数に指示する方法はありますか?
乾杯