I'm using Rails, backbone.js (learning this now). Let's say you have two models, Car and Engine.

var Car = Backbone.Model.extend({
  initialize: function() {
    if(this.get('engine') != undefined) this.engine = new Engine(this.get('engine'));
  }
}

var redCar = new Car({
      'color': 'red',
      // The controller nests the model
      'engine': {
         'horsepower': '350'
       }
    });


redCar.save()

What is the right way to send engine_attributes to the controller? (Car accepts_nested_attributes_for :engine, so it expects engine_attributes.) Do I override the Backbone sync()? Is there a better convention to follow for nested models?

Maybe I should not be returning nested models from the controller, or returning engine_attributes instead of engine?

On a side note, I am using the Rails respond_with(@car, :include => :engine) (same as @car.to_json(:include => :engine). The fact that this api nests the engine attributes under engine but the model expects engine_attributes seems contradictory - I've never been sure how to reconcile this.

link|improve this question

46% accept rate
feedback

2 Answers

up vote 21 down vote accepted

I would suggest to override toJSON on the backbone model.

toJSON: function(){

  json = {car : this.attributes};
  return _.extend(json, {engine_attributes: this.get("engine").toJSON());

}

toJSON is called within the sync method just before sending data to the backend.

link|improve this answer
1  
Awesome, id suggest making your rails controller deal with backbones format, but this is much MUCH cleaner – Vladimir Gurovich Mar 10 '11 at 1:41
I agree - I wish there was an option to do this in backbone. – Alex Neth Mar 22 '11 at 2:04
Awesome, exactly what I was looking for. – c3rin Jul 8 '11 at 17:35
7  
this.attributes should be cloned, or you'll soon be in a world of hurt :) Should be: _.clone(this.attributes) – Emil Stenström Aug 17 '11 at 13:44
Is this also the recommended solution for adding read-only props to the model? (e.g. special formats/calculated properties to be used in templates) – Dan Sep 16 '11 at 11:10
show 1 more comment
feedback

Very helpful. I was working with a similar situation, and this example did not work for me at first. In my example I have a has_many / belongs_to relation. For example a car has_many :tires.

The problem I encountered was that the tires_attributes needed to be nested INSIDE of the car json, not adjacent to it. I ended up with something like this:

toJSON: function(){

  json = {car : this.attributes};
  json.car.tires_attributes = this.get('tires').toJSON();
  return json;

}

Hope this helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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