If I have a nested set of plain old javascript objects (for example, having been returned from JSON), how do I them into Ember.js objects (or at least getting the binding functionality working)?

For example, if I have an object like:

var x = {
  bar: {
    baz: "quux"
  }
}

Then I turn that into an Ember object:

var y = Ember.Object.create(x);

Then setting the value of "baz" won't update any views I have, because it is just a normal js object, not an Ember object.

I know I can just recursively go over the object keys, and do Ember.Object.create all the way down, but is there an alternative approach?

link|improve this question

25% accept rate
feedback

1 Answer

I'm not sure how you're attempting to set the value of baz, after you've created the Ember.Object, but you should make sure you use an observer-aware setter function. For this example, I'd suggest using setPath().

For example:

var x = {
  bar: {
    baz: "quux"
  }
};
var y = Ember.Object.create(x);
y.setPath('bar.baz', 'foo');

jsFiddle example, showing a view update after setting: http://jsfiddle.net/ebryn/kv3cU/

link|improve this answer
Cool, I didn't know you could do that. I guess it is a bit messier because then you have to use 2 different accessor methods – Roland Jan 13 at 14:56
Can you elaborate on what you mean? – ebryn Jan 15 at 8:12
Sometimes you can use standard js assignment, i.e. foo.bar = "a", but other times you need to use setPath. (I'm using ENV.USE_ACCESSORS = true, because I don't need to care about IE). – Roland Jan 15 at 12:21
feedback

Your Answer

 
or
required, but never shown

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