我有一个复合视图:
var resultView = Marionette.CompositeView.extend({
template : ResultPanel,
itemView : ResultItemView,
initialize : function() {
...
},
itemViewOptions : {
app : this.options.app
},
我只想将此视图的 app 属性分配给 itemView 的 app 属性。所以我可以从其他视图使用这个视图的应用程序。但是我收到了这个错误:Uncaught TypeError: Cannot read property 'app' of undefined。我究竟做错了什么?还有其他方法可以做到这一点吗?