我与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的方法不会被调用。 我做错了吗?