我的应用程序是使用主干构建的。尝试在模型上使用 destroy() 时遇到问题,这是我在 chrome 中得到的错误堆栈:
Uncaught TypeError: Cannot call method 'remove' of undefined backbone-min.js:34
f.extend.remove backbone-min.js:34
g.Events.trigger backbone-min.js:9
f.extend.destroy.d backbone-min.js:14
f.extend.destroy backbone-min.js:14
Backbone.Model.extend.remove ticketModel.js:21
Backbone.View.extend.deleteTicket ticketListView.js:44
b.each.b.forEach underscore-min.js:11
Backbone.View.extend.deleteTicketTickets ticketListView.js:49
f.event.dispatch jquery-1.7.2.min.js:3
f.event.add.h.handle.i
知道这可能是什么吗?
导致错误的代码实际上只是:
model.destroy();
model 确实包含一个模型,console.log(model)
因为它应该将对象记录到控制台。
这是模型定义:
define([
'apiEndpoint'
],function(apiEndpoint) {
var TicketModel = Backbone.Model.extend({
url: apiEndpoint.url,
isTicket : function(){
return ( this.type === 'ticket') ? true : false;
},
isTask : function(){
return ( this.type === 'task') ? true : false;
},
//Tells you if the view is selected for bulk actions
defaults : {
isSelected: false
},
remove : function(){
this.destroy({success: function(){
console.log('success');
}});
}
});
return TicketModel;
});