this.model.save({ success: function(model, response){ console.log(\'success\'); }, error: function(){ console.log(\'error\'); } })
The first argument of save is the attributes to save on the model:
this.model.save( {att1 : "value"}, {success :handler1, error: handler2});