this.model.save({
  success: function(model, response){
    console.log('success');
  },
  error: function(){
    console.log('error');
  }
})

The model is correctly posted to the server which handles the save, but the success callback is not fired. Do I need to send something back from the server ?

link|improve this question

70% accept rate
2  
Turns out I was doing it wrong: correct syntax should be: this.model.save(newItem, {success : ..., error: ... }) – Running Turtle Apr 22 '11 at 18:10
'null' seems to work ok as a placeholder too. – UpTheCreek Sep 21 '11 at 13:22
feedback

1 Answer

up vote 21 down vote accepted

The first argument of save is the attributes to save on the model:

this.model.save( {att1 : "value"}, {success :handler1, error: handler2});
link|improve this answer
I'm a tad confused - (1)I thought that backbone always sent the whole model back during save (that it's not possible to send partial model updates). So what is the purpose of the attribute name-values? (2) What if you just want to save the model after performing some .set()s - why the attribute list? (3) In the docs, the attribute list param is shown as optional. Can you clarify? Thanks. – UpTheCreek Sep 21 '11 at 13:19
1  
You can do a bunch of "set" with your attributes and then do a save without any attributes. All attributes of the model are always sent to the server. Save with attributes is just a shortcut to set+save . – Julien Sep 23 '11 at 15:18
Ok thanks for clearing up my misunderstanding. – UpTheCreek Sep 23 '11 at 19:08
As silly as it seems this is exactly what it does, shame it's poorly documented. – Kevin Mar 6 at 9:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.