I am building a small Backbone.js application and added some custom getters to one of the models (the name getter returns a concatenated first- and last name for example):

PersonModel = Backbone.Model.extend({
  get: function (attr) {
    if (typeof this[attr] == 'function') {
      return this[attr]();
    }
    return Backbone.Model.prototype.get.call(this, attr);
  },

  name: function() {
    return firstName + " " + lastName;
  }
})

I can now use person.get("name") to retrieve the name, nice. However, when I call toJSON on the the model these values aren't included (and I suppose that makes sense). Problem is I use this to render my views:

this.template({people: this.collection.toJSON()});

What's the best way to do this in Backbone.js? Manually creating the JSON with the overwritten getters?

Thanks!

link|improve this question

79% accept rate
Why not just make "name" a real attribute? – mu is too short Nov 23 '11 at 23:18
Because I want don't want a static attribute. If I change firstName in this example name should return the updated name, I don't want to change them separately. Does that make sense? – Cimm Nov 23 '11 at 23:26
feedback

1 Answer

up vote 2 down vote accepted

You could provide your own toJSON method on PersonModel:

toJSON: function() {
    var attr = Backbone.Model.prototype.toJSON.call(this);
    attr.name = this.name();
    return attr;
}

The collection toJSON just calls toJSON on each model:

// The JSON representation of a Collection is an array of the
// models' attributes.
toJSON : function() {
  return this.map(function(model){ return model.toJSON(); });
},

so adding your own toJSON to your model should work.

You could also add name as a real attribute and then adjust your model's validate method to update name if firstName or lastName changes and to ignore any direct attempts to change name or complain about "an attempt to edit a read-only attribute" when someone tries to pass a name change to set. There's nothing that says that validate can't change the attribute object that it is given so you could be given {firstName: 'x'} and change it to {firstName: 'x', name: 'x ' + this.get('lastName')} before validate returns. This would be a bit of an abuse of validate but there is no explicit prohibition against validate altering the attribute set and it is the only hook you have. I suppose you could have the model listen to change events on its own firstName and lastName and then trigger a set({name: ...}) but then you could have event ordering problems if someone else is watching only the first and last names.

link|improve this answer
+1 for giving all options, though i would not use validate to achieve this solution that just looks ugly :P although i love the first solution, just today i answered a similar post with a slightly different approach, with a toJSON() being called in a toFullJSON() method, stupid me, i could have overridden the default and just added the darn extra attributes :) – Sander Nov 24 '11 at 0:08
@Sander: I agree that the validate part isn't that nice but there isn't any support for virtual attributes in Backbone and there's not much in the way of hooks for setting it up yourself; constructor/parse/validate is about all there is if you need to do something a little non-standard. I'd say that this is an example of the problem with the usual "an object is a struct" approach that so many ORM-ish systems have. – mu is too short Nov 24 '11 at 0:21
Thanks, this works exactly as you explain. – Cimm Nov 24 '11 at 9:56
feedback

Your Answer

 
or
required, but never shown

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