我从 Backbone.js 开始并尝试构建我的第一个示例应用程序 - 购物清单。
我的问题是当我获取项目集合时,可能不会触发重置事件,因此不会调用我的渲染方法。
模型:
Item = Backbone.Model.extend({
urlRoot : '/api/items',
defaults : {
id : null,
title : null,
quantity : 0,
quantityType : null,
enabled : true
}
});
收藏:
ShoppingList = Backbone.Collection.extend({
model : Item,
url : '/api/items'
});
列表显示:
ShoppingListView = Backbone.View.extend({
el : jQuery('#shopping-list'),
initialize : function () {
this.listenTo(this.model, 'reset', this.render);
},
render : function (event) {
// console.log('THIS IS NEVER EXECUTED');
var self = this;
_.each(this.model.models, function (item) {
var itemView = new ShoppingListItemView({
model : item
});
jQuery(self.el).append(itemView.render().el);
});
return this;
}
});
列表项视图:
ShoppingListItemView = Backbone.View.extend({
tagName : 'li',
template : _.template(jQuery('#shopping-list-item').html()), // set template for item
render : function (event) {
jQuery(this.el).html(this.template(this.model.toJSON()));
return this;
}
});
路由器:
var AppRouter = Backbone.Router.extend({
routes : {
'' : 'show'
},
show : function () {
this.shoppingList = new ShoppingList();
this.shoppingListView = new ShoppingListView({
model : this.shoppingList
});
this.shoppingList.fetch(); // fetch collection from server
}
});
申请开始:
var app = new AppRouter();
Backbone.history.start();
页面加载后,从服务器正确获取项目集合,但从不调用 ShoppingListView 的渲染方法。我做错了什么?