Esta tradução não está completa. Por favor ajude a traduzir este artigo a partir do Inglês.
Summary
O método Object.defineProperty()
define uma nova propriedade directamente sobre um objecto, ou modifica uma propriedade existente, e retorna o object.
Syntax
Object.defineProperty(obj, prop, descriptor)
Parâmetros
obj
- O objecto sobre o qual irá ser definida a propriedade.
prop
- O nome da propriedade a ser definida ou modificada.
descriptor
- O descritor da propriedade a ser definida ou modificada.
Descrição
Este método permite uma adição precisa ou modificação de uma propriedade num objecto. A adição de propriedades através de atribuição cria propriedades enumeraveis, propriedades, propriedades que são listadas em (for...in
ciclos ou método Object.keys
), cujos valores podem ser alterados e que podem ser removidos. Este método permite que estes detalhes extra sejam alterados face o seu valor padrão.
Nos objectos estão presentes dois tipo de descritores de propriedades: Descritores de dados e descritores de assessores. Um descritor de dados é uma propriedade que está associada a um valor que pode ou não permitir que seja reescrito. Um descritor de assessor Um descritor assessor é uma propriedade descrita por um par de funções getter-setter. Um descritor terá de ser de um dos dois tipos, nunca poderá ser ambos.
Dos descritores, tanto os assessores como os dados são objector. Eles partilham as seguintes chaves/propriedades.
configurable
true
se e só se o tipo deste descritor de propriedades puder se alterado e se a propriedade pode ser removida do objecto correspondente.
Defaults tofalse
.enumerable
true
se e só se esta propriedade aparecer durantente uma enumeração das propriedades do objecto correspondente.
Defaults tofalse
.
Um descritor de dados também possui as seguintes chaves/propriedades opcionais:
value
- O valor associado à propriedade. Pode assumir qualquer valor válido em JavaScript (número, objecto, funções, etc).
Defaults toundefined
. writable
true
se e só se o valor associado à propriedade puder ser alterada com um operador de atribuição.
Defaults tofalse
.
Um assessor descritor tem as seguintes chaves opcionais:
get
- A function which serves as a getter for the property, or
undefined
if there is no getter. The function return will be used as the value of property.
Defaults toundefined
. set
- A function which serves as a setter for the property, or
undefined
if there is no setter. The function will receive as only argument the new value being assigned to the property.
Defaults toundefined
.
Bear in mind that these options are not necessarily own properties so, if inherited, will be considered too. In order to ensure these defaults are preserved you might freeze the Object.prototype
upfront, specify all options explicitly, or point to null
as __proto__
property.
// using __proto__ Object.defineProperty(obj, 'key', { __proto__: null, // no inherited properties value: 'static' // not enumerable // not configurable // not writable // as defaults }); // being explicit Object.defineProperty(obj, 'key', { enumerable: false, configurable: false, writable: false, value: 'static' }); // recycling same object function withValue(value) { var d = withValue.d || ( withValue.d = { enumerable: false, writable: false, configurable: false, value: null } ); d.value = value; return d; } // ... and ... Object.defineProperty(obj, 'key', withValue('static')); // if freeze is available, prevents the code to add // value, get, set, enumerable, writable, configurable // to the Object prototype (Object.freeze || Object)(Object.prototype);
Examples
If you want to see how to use the Object.defineProperty
method with a binary-flags-like syntax, see additional examples.
Example: Creating a property
When the property specified doesn't exist in the object, Object.defineProperty()
creates a new property as described. Fields may be omitted from the descriptor, and default values for those fields are imputed. All of the Boolean-valued fields default to false
. The value
, get
, and set
fields default to undefined
. A property which is defined without get
/set
/value
/writable
is called “generic” and is “typed” as a data descriptor.
var o = {}; // Creates a new object // Example of an object property added with defineProperty with a data property descriptor Object.defineProperty(o, 'a', { value: 37, writable: true, enumerable: true, configurable: true }); // 'a' property exists in the o object and its value is 37 // Example of an object property added with defineProperty with an accessor property descriptor var bValue = 38; Object.defineProperty(o, 'b', { get: function() { return bValue; }, set: function(newValue) { bValue = newValue; }, enumerable: true, configurable: true }); o.b; // 38 // 'b' property exists in the o object and its value is 38 // The value of o.b is now always identical to bValue, unless o.b is redefined // You cannot try to mix both: Object.defineProperty(o, 'conflict', { value: 0x9f91102, get: function() { return 0xdeadbeef; } }); // throws a TypeError: value appears only in data descriptors, get appears only in accessor descriptors
Example: Modifying a property
When the property already exists, Object.defineProperty()
attempts to modify the property according to the values in the descriptor and the object's current configuration. If the old descriptor had its configurable
attribute set to false
(the property is said to be “non-configurable”), then no attribute besides writable
can be changed. In that case, it is also not possible to switch back and forth between the data and accessor property types.
If a property is non-configurable, its writable
attribute can only be changed to false
.
A TypeError
is thrown when attempts are made to change non-configurable property attributes (besides the writable
attribute) unless the current and new values are the same.
Writable attribute
When the writable
property attribute is set to false
, the property is said to be “non-writable”. It cannot be reassigned.
var o = {}; // Creates a new object Object.defineProperty(o, 'a', { value: 37, writable: false }); console.log(o.a); // logs 37 o.a = 25; // No error thrown (it would throw in strict mode, even if the value had been the same) console.log(o.a); // logs 37. The assignment didn't work.
As seen in the example, trying to write into the non-writable property doesn't change it but doesn't throw an error either.
Enumerable attribute
The enumerable
property attribute defines whether the property shows up in a for...in
loop and Object.keys()
or not.
var o = {}; Object.defineProperty(o, 'a', { value: 1, enumerable: true }); Object.defineProperty(o, 'b', { value: 2, enumerable: false }); Object.defineProperty(o, 'c', { value: 3 }); // enumerable defaults to false o.d = 4; // enumerable defaults to true when creating a property by setting it for (var i in o) { console.log(i); } // logs 'a' and 'd' (in undefined order) Object.keys(o); // ['a', 'd'] o.propertyIsEnumerable('a'); // true o.propertyIsEnumerable('b'); // false o.propertyIsEnumerable('c'); // false
Configurable attribute
The configurable
attribute controls at the same time whether the property can be deleted from the object and whether its attributes (other than writable
) can be changed.
var o = {}; Object.defineProperty(o, 'a', { get: function() { return 1; }, configurable: false }); Object.defineProperty(o, 'a', { configurable: true }); // throws a TypeError Object.defineProperty(o, 'a', { enumerable: true }); // throws a TypeError Object.defineProperty(o, 'a', { set: function() {} }); // throws a TypeError (set was undefined previously) Object.defineProperty(o, 'a', { get: function() { return 1; } }); // throws a TypeError (even though the new get does exactly the same thing) Object.defineProperty(o, 'a', { value: 12 }); // throws a TypeError console.log(o.a); // logs 1 delete o.a; // Nothing happens console.log(o.a); // logs 1
If the configurable
attribute of o.a
had been true
, none of the errors would be thrown and the property would be deleted at the end.
Example: Adding properties and default values
It's important to consider the way default values of attributes are applied. There is often a difference between simply using dot notation to assign a value and using Object.defineProperty()
, as shown in the example below.
var o = {}; o.a = 1; // is equivalent to: Object.defineProperty(o, 'a', { value: 1, writable: true, configurable: true, enumerable: true }); // On the other hand, Object.defineProperty(o, 'a', { value: 1 }); // is equivalent to: Object.defineProperty(o, 'a', { value: 1, writable: false, configurable: false, enumerable: false });
Example: Custom Setters and Getters
Example below shows how to implement a self-archiving object. When temperature
property is set, the archive
array gets a log entry.
function Archiver() { var temperature = null; var archive = []; Object.defineProperty(this, 'temperature', { get: function() { console.log('get!'); return temperature; }, set: function(value) { temperature = value; archive.push({ val: temperature }); } }); this.getArchive = function() { return archive; }; } var arc = new Archiver(); arc.temperature; // 'get!' arc.temperature = 11; arc.temperature = 13; arc.getArchive(); // [{ val: 11 }, { val: 13 }]
Specifications
Specification | Status | Comment |
---|---|---|
ECMAScript 5.1 (ECMA-262) The definition of 'Object.defineProperty' in that specification. |
Standard | Initial definition. Implemented in JavaScript 1.8.5. |
ECMAScript 6 (ECMA-262) The definition of 'Object.defineProperty' in that specification. |
Release Candidate |
Browser compatibility
Feature | Firefox (Gecko) | Chrome | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 4.0 (2) | 5 (previous versions untested) | 9 (8, but only on DOM objects and with some non-standard behaviors. See below.) | 11.60 | 5.1 (5, but not on DOM objects) |
Feature | Firefox Mobile (Gecko) | Android | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | 4.0 (2) | (Yes) | 9 and above | 11.50 | (Yes) |
Based on Kangax's compat tables.
Redefining the length
property of an Array
object
It is possible to redefine the length
property of arrays, subject to the usual redefinition restrictions. (The length
property is initially non-configurable, non-enumerable, and writable. Thus on an unaltered array it is possible to change the length
property's value, or to make it non-writable. It is not allowed to change its enumerability or configurability, or if it is non-writable to change its value or writability.) However, not all browsers permit this redefinition.
Firefox 4 through 22 will throw a TypeError
on any attempt whatsoever (whether permitted or not) to redefine the length
property of an array.
Versions of Chrome which implement Object.defineProperty()
in some circumstances ignore a length value different from the array's current length
property. In some circumstances changing writability seems to silently not work (and not throw an exception). Also, relatedly, some array-mutating methods like Array.prototype.push
don't respect a non-writable length.
Versions of Safari which implement Object.defineProperty()
ignore a length
value different from the array's current length
property, and attempts to change writability execute without error but do not actually change the property's writability.
Only Internet Explorer 9 and later, and Firefox 23 and later, appear to fully and correctly implement redefinition of the length
property of arrays. For now, don't rely on redefining the length
property of an array to either work, or to work in a particular manner. And even when you can rely on it, there's really no good reason to do so.
Internet Explorer 8 specific notes
Internet Explorer 8 implemented a Object.defineProperty()
method that could only be used on DOM objects. A few things need to be noted:
- Trying to use
Object.defineProperty()
on native objects throws an error. - Property attributes must be set to some values.
true, true, true
for data descriptor andtrue
for configurable,false
for enumerable for accessor descriptor.(?) Any attempt to provide other value(?) will result in an error being thrown. - Reconfiguring a property requires first deleting the property. If the property isn't deleted, it stays as it was before the reconfiguration attempt.