这是来自我的主干视图。但我不断收到以下错误:
Uncaught TypeError: Cannot call method 'add' of undefined
.
我怎样才能保留它,以便我可以将新模型添加到我的收藏中?
addGroupModal: function() {
$('#add-group-modal').modal('show');
// Manual Event Listener for Submit Button
$("#add-group-submit-button").click(function(){
var newGroup = new KAC.Models.KeepAContactGroup({ name: '123', list_order: '2' });
console.log(newGroup)
newGroup.save();
this.collection.add(newGroup)
});
},