我对Marionette.js相当新,并且似乎在渲染集合视图时遇到了一些麻烦。
尝试显示视图时,我收到以下控制台错误消息:Uncaught TypeError: Cannot read property 'toJSON' of undefined
。
似乎该集合未绑定到子视图。 Collection View的实例看起来没问题,这意味着我看到了childView
属性和带有获取模型的collection属性。关于如何构建集合视图,文档似乎非常简单,因此不确定我缺少什么。感谢。
Child view:
var UserProfile = Marionette.ItemView.extend({
template: '',
initialize: function() {
this.template = Marionette.TemplateCache.get("#userprofile");
},
render: function() {
console.log(this.collection); //undefined
var data = this.collection.toJSON(); //error message here
this.$el.html(this.template({data:data}));
}
});
//Collection view:
var UserView = Marionette.CollectionView.extend({
childView: UserProfile
});
// Fetch collection and show:
var myQuery = new Parse.Query(app.Models.User);
myQuery.limit(200).containedIn(option, uiArray);
var Contacts = Parse.Collection.extend({
model: app.models.User,
query: myQuery
});
var contacts = new Contacts();
contacts.fetch().then(function(contacts) {
var userview = new UserView({collection:contacts});
app.regions.get("content").show(userview);
})
答案 0 :(得分:2)
你问的是"集合"在ItemView中。 ItemView与项目一起操作。所以写这样的东西是有道理的:
render: function() {
console.log(this.model); //undefined
var data = this.model.toJSON(); //error message here
this.$el.html(this.template({data:data}));
}
});