I am setting lots of properties with a series of set calls e.g.

this.set('prop1', value1);
this.set('prop1', value1);
...

Is there a way to do this in one call (similar to when I create an object)? E.g.

this.setMultiple({prop1: value1, prop2: value2});

I still don't fully grok Ember's inheritance model. Maybe something along the lines of reopen?

link|improve this question

Hm, if I were writing this API, I'd make set polymorphic, and accept either a key and a value, or an object consisting of key-value pairs. Don't see anything in the documentation about this, though. – Matt Ball Jan 6 at 3:00
feedback

2 Answers

up vote 9 down vote accepted

There is actually a function for this: setProperties. You can use it like this:

obj.setProperties({prop1: value1, prop2: value2})

obj should be instance of Ember.Object.

link|improve this answer
feedback

As @oruen points out in his correct answer, you are describing setProperties(...).

One potential issue to be aware of is that according to the JS spec the order of properties on an object is indeterminate. (See Elements order in a "for (… in …)" loop).

If you don't care about order, or are confident that the JS implementations you are targeting will respect your order, setProperties should work for you.

When setting multiple properties, you should consider using Ember.beginPropertyChanges() and Ember.endPropertyChanges(). The former suspends the observer triggers and the latter restores it and flushes. This approach can improve performance. setProperties does this for you.

Also notable is Ember.changeProperties, which accepts a callback and calls Ember.beginPropertyChanges, then your callback, and then Ember.endPropertyChanges, even if your callback raised an exception. Example usage:

Ember.changeProperties(function() {
  obj1.set('foo', mayBlowUpWhenSet);
  obj2.set('bar', baz);
});

Hope that 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.