Object.defineProperties()
Phương thức Object.defineProperties()
định nghĩa hoặc thay đổi tức thì các thuộc tính của một đối tượng, sau đó trả lại đối tượng đó.
Cú pháp
Object.defineProperties(obj, props)
Các tham số
obj
- Đối tượng được định nghĩa hoặc thay đổi các thuộc tính.
props
- Đối tượng mà các thuộc tính có thể liệt kê (enumerable) của riêng nó sẽ cấu thành các bộ mô tả (descriptor) cho các thuộc tính được định nghĩa hoặc sửa đổi. Các bộ mô tả thuộc tính (property descriptors) có trong các đối tượng bao gồm hai loại chính: các bộ mô tả dữ liệu (data descriptors) và các bộ mô tả truy cập (accessor descriptors) (xem
Object.defineProperty()
để biết thêm chi tiết). Các bộ mô tả bao gồm các khóa sau: -
configurable
true
if and only if the type of this property descriptor may be changed and if the property may be deleted from the corresponding object.
Defaults tofalse
.enumerable
true
if and only if this property shows up during enumeration of the properties on the corresponding object.
Defaults tofalse
.
value
- The value associated with the property. Can be any valid JavaScript value (number, object, function, etc).
Defaults toundefined
. writable
true
if and only if the value associated with the property may be changed with an assignment operator (en-US).
Defaults tofalse
.
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
.
Giá trị trả về
Đối tượng được truyền khi gọi phương thức.
Mô tả
Object.defineProperties
, in essence, defines all properties corresponding to the enumerable own properties of props
on the object obj
object.
Ví dụ
var obj = {};
Object.defineProperties(obj, {
'property1': {
value: true,
writable: true
},
'property2': {
value: 'Hello',
writable: false
}
// etc. etc.
});
Polyfill
Assuming a pristine execution environment with all names and properties referring to their initial values, Object.defineProperties
is almost completely equivalent (note the comment in isCallable
) to the following reimplementation in JavaScript:
function defineProperties(obj, properties) {
function convertToDescriptor(desc) {
function hasProperty(obj, prop) {
return Object.prototype.hasOwnProperty.call(obj, prop);
}
function isCallable(v) {
// NB: modify as necessary if other values than functions are callable.
return typeof v === 'function';
}
if (typeof desc !== 'object' || desc === null)
throw new TypeError('bad desc');
var d = {};
if (hasProperty(desc, 'enumerable'))
d.enumerable = !!desc.enumerable;
if (hasProperty(desc, 'configurable'))
d.configurable = !!desc.configurable;
if (hasProperty(desc, 'value'))
d.value = desc.value;
if (hasProperty(desc, 'writable'))
d.writable = !!desc.writable;
if (hasProperty(desc, 'get')) {
var g = desc.get;
if (!isCallable(g) && typeof g !== 'undefined')
throw new TypeError('bad get');
d.get = g;
}
if (hasProperty(desc, 'set')) {
var s = desc.set;
if (!isCallable(s) && typeof s !== 'undefined')
throw new TypeError('bad set');
d.set = s;
}
if (('get' in d || 'set' in d) && ('value' in d || 'writable' in d))
throw new TypeError('identity-confused descriptor');
return d;
}
if (typeof obj !== 'object' || obj === null)
throw new TypeError('bad obj');
properties = Object(properties);
var keys = Object.keys(properties);
var descs = [];
for (var i = 0; i < keys.length; i++)
descs.push([keys[i], convertToDescriptor(properties[keys[i]])]);
for (var i = 0; i < descs.length; i++)
Object.defineProperty(obj, descs[i][0], descs[i][1]);
return obj;
}
Đặc tả
Specification | Status | Comment |
---|---|---|
ECMAScript 5.1 (ECMA-262) The definition of 'Object.defineProperties' in that specification. |
Standard | Initial definition. Implemented in JavaScript 1.8.5 |
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'Object.defineProperties' in that specification. |
Standard | |
ECMAScript (ECMA-262) The definition of 'Object.defineProperties' in that specification. |
Living Standard |
Tương thích trình duyệt
We're converting our compatibility data into a machine-readable JSON format.
This compatibility table still uses the old format,
because we haven't yet converted the data it contains.
Find out how you can help! (en-US)
Feature | Firefox (Gecko) | Chrome | Edge | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | 4.0 (2) | 5 | (Yes) | 9 | 11.60 | 5 |
Feature | Firefox Mobile (Gecko) | Android | Edge | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | 4.0 (2) | (Yes) | (Yes) | ? | 11.5 | (Yes) |