ComputedProperty#readOnly()

readOnlyEmber.ComputedPropertypublic

Defined in packages/ember-metal/lib/computed.js:193

Call on a computed property to set it into read-only mode. When in this mode the computed property will throw an error when set.

1
2
3
4
5
6
7
8
9
let Person = Ember.Object.extend({
  guid: Ember.computed(function() {
    return 'guid-guid-guid';
  }).readOnly()
});
 
let person = Person.create();
 
person.set('guid', 'new-guid'); // will throw an exception

Returns:

Ember.ComputedProperty
this
doc_EmberJs
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.