我第一次使用Backbone.js
在我的initialize
方法视图中有
this.collection.bind('add', function(m){
console.log('here');
this.views[m.cid] = new MyView({
model: m,
id: 'view_'+m.cid
}).render();
}, this);
但如果我执行
products.add([m1,m2]);
仅渲染m1,不渲染m2。