我在多步骤向导中有一个ProductListView
包含多个子视图的父视图。ProductView
当用户单击 aProductView
时,其模型的 id 应该存储在某个地方(可能在一个数组中),以便可以将其发送回服务器端进行处理。
问题:id
我应该在哪里存储ProductView
用户点击的?我尝试将其存储在其父视图中ProductListView
,但似乎无法selectedProducts
从子视图访问父视图中的数组ProductView
。
这是正确的方法吗?这应该怎么做?
模型
ProductCollection = Backbone.Collection.extend({
model: Product,
url: '/wizard'
});
父视图
ProductListView = Backbone.View.extend({
el: '#photo_list',
selectedProducts: {}, // STORING SELECTED PRODUCTS IN THIS ARRAY
initialize: function() {
this.collection.bind('reset', this.render, this);
},
render: function() {
this.collection.each(function(product, index){
$(this.el).append(new ProductView({ model: product }).render().el);
}, this);
return this;
}
});
子视图
ProductView = Backbone.View.extend({
tagname: 'div',
className: 'photo_box',
events: {
'click': 'toggleSelection'
},
template: _.template($('#tpl-PhotoListItemView').html()),
render: function() {
this.$el.html(this.template( this.model.toJSON() ));
return this;
},
// ADDS ITS MODEL'S ID TO ARRAY
toggleSelection: function() {
this.parent.selectedProducts.push(this.model.id);
console.log(this.parent.selectedProducts);
}
});