の使用方法について根本的な誤解があると思いますMarionette.Layout
。
私はこのようなことをしようとしています:
レイアウトには、 Marinotette.ItemView
「Explode」ItemView
と「PopStar」の 2 つの が含まれていItemView
ます。このレイアウトは常にこれらのビューを含むように設計されているため、これを実行しようとしました:
var TheLayout = Backbone.Marionette.Layout.extend({
template: '#the=layout-template',
regions: {
explode: '#explode-region',
popstar: '#popstar-region'
}
initialize:function(options){
_.bindAll(this);
var explodeView = new ExplodeView();
this.explode.show(explodeView); // <-- This throws and exception because the regions are not available yet
}
})
しかし、レイアウトがレンダリングされるまでリージョンは利用できないようです。this.render()
ビューを追加する前に呼び出してみましたが、うまくいきませんでした。ここでの根本的な問題は、間違った状況でレイアウトを適用していることだと確信しています。
この状況で私は何をすべきですか?いつ使うのが正解Marionette.Layout
?
ありがとう!