我在backbonejs应用程序中有以下内容:
////MODEL
var app={};
app.ledger=Backbone.Model.extend();
////COLLECTION
app.ledgerList=Backbone.Collection.extend({
model: app.ledger,
localStorage:new Store('ledgerstore')
});
////INITIATING COLLECTION
app.ledgerlist=new app.ledgerList();
在我的一个观点中,我尝试在集合中创建一个新模型,如下所示:
newAttributes:function(){
return{
name:$("#ledgerName").val(),
email: $("#ledgerEmail").val(),
address: $("#ledgerAddress").val(),
phone: $("#ledgerPhone").val()
}},
saveLedger: function(){
app.ledgerlist.create(this.newAttributes());
}
我得到了Uncaught TypeError: Cannot read property 'localStorage' of undefined
在线错误app.ledgerlist.create(this.newAttributes());
这一切都开始突然发生在不知从何而来。几分钟前它还在工作。我想这与本地存储有关。我清除了它,但还是一样。在 Firefox 控制台中说 d.collection 未定义。
请指导。