目錄函數
對象是由多個名/值對
組成的無序的
集合。對象中每一個屬性對應任意類型的值
。
定義對象可使用構造函數
或字面量
的形式:測試
var obj = new Object; obj.name = "張三"; //添加描述 obj.say = function(){}; //添加行爲 或 var obj = { name: "張三", say: function(){ }, };
除了以上添加屬性的方式,還可使用Object.defineProperty定義新屬性或修改原有的屬性。code
一、 語法:對象
Object.defineProperty(obj, prop, descriptor)
二、 參數說明:ip
obj:必需。目標對象 prop:必需。需定義或修改的屬性的名字 descriptor:必需。目標屬性所擁有的特性
三、返回值:get
傳入函數的對象。即第一個參數obj
給對象的屬性添加特性描述,目前提供兩種形式:數據描述和存取器描述。原型
當修改或定義對象的某個屬性的時候,給這個屬性添加一些特性:it
var obj = { test:"hello" } //對象已有的屬性添加特性描述 Object.defineProperty(obj,"test",{ configurable:true | false, enumerable:true | false, value:任意類型的值, writable:true | false }); //對象新添加的屬性的特性描述 Object.defineProperty(obj,"newKey",{ configurable:true | false, enumerable:true | false, value:任意類型的值, writable:true | false });
數據描述中的屬性都是可選的,來看一下設置每個屬性的做用。io
var obj = {} //第一種狀況:不設置value屬性 Object.defineProperty(obj,"newKey",{ }); console.log( obj.newKey ); //undefined ------------------------------ //第二種狀況:設置value屬性 Object.defineProperty(obj,"newKey",{ value:"hello" }); console.log( obj.newKey ); //hello
var obj = {} //第一種狀況:writable設置爲false,不能重寫。 Object.defineProperty(obj,"newKey",{ value:"hello", writable:false }); //更改newKey的值 obj.newKey = "change value"; console.log( obj.newKey ); //hello //第二種狀況:writable設置爲true,能夠重寫 Object.defineProperty(obj,"newKey",{ value:"hello", writable:true }); //更改newKey的值 obj.newKey = "change value"; console.log( obj.newKey ); //change value
var obj = {} //第一種狀況:enumerable設置爲false,不能被枚舉。 Object.defineProperty(obj,"newKey",{ value:"hello", writable:false, enumerable:false }); //枚舉對象的屬性 for( var attr in obj ){ console.log( attr ); } //第二種狀況:enumerable設置爲true,能夠被枚舉。 Object.defineProperty(obj,"newKey",{ value:"hello", writable:false, enumerable:true }); //枚舉對象的屬性 for( var attr in obj ){ console.log( attr ); //newKey }
刪除目標屬性
或是否能夠再次修改屬性的特性
(writable, configurable, enumerable)。這個屬性起到兩個做用:console
//-----------------1. 測試目標屬性是否能被刪除------------------------ var obj = {} //第一種狀況:configurable設置爲false,不能被刪除。 Object.defineProperty(obj,"newKey",{ value:"hello", writable:false, enumerable:false, configurable:false }); //刪除屬性 delete obj.newKey; console.log( obj.newKey ); //hello //第二種狀況:configurable設置爲true,能夠被刪除。 Object.defineProperty(obj,"newKey",{ value:"hello", writable:false, enumerable:false, configurable:true }); //刪除屬性 delete obj.newKey; console.log( obj.newKey ); //undefined //-----------------2. 測試是否能夠再次修改特性------------------------ var obj = {} //第一種狀況:configurable設置爲false,不能再次修改特性。 Object.defineProperty(obj,"newKey",{ value:"hello", writable:false, enumerable:false, configurable:false }); //從新修改特性 Object.defineProperty(obj,"newKey",{ value:"hello", writable:true, enumerable:true, configurable:true }); console.log( obj.newKey ); //報錯:Uncaught TypeError: Cannot redefine property: newKey //第二種狀況:configurable設置爲true,能夠再次修改特性。 Object.defineProperty(obj,"newKey",{ value:"hello", writable:false, enumerable:false, configurable:true }); //從新修改特性 Object.defineProperty(obj,"newKey",{ value:"hello", writable:true, enumerable:true, configurable:true }); console.log( obj.newKey ); //hello
除了能夠給新定義的屬性設置特性,也能夠給已有的屬性設置特性
//定義對象的時候添加的屬性,是可刪除、可重寫、可枚舉的。 var obj = { test:"hello" } //改寫值 obj.test = 'change value'; console.log( obj.test ); //'change value' Object.defineProperty(obj,"test",{ writable:false }) //再次改寫值 obj.test = 'change value again'; console.log( obj.test ); //依然是:'change value'
提示:一旦使用Object.defineProperty給對象添加屬性,那麼若是不設置屬性的特性,那麼configurable、enumerable、writable這些值都爲默認的false
var obj = {}; //定義的新屬性後,這個屬性的特性中configurable,enumerable,writable都爲默認的值false //這就致使了neykey這個是不能重寫、不能枚舉、不能再次設置特性 // Object.defineProperty(obj,'newKey',{ }); //設置值 obj.newKey = 'hello'; console.log(obj.newKey); //undefined //枚舉 for( var attr in obj ){ console.log(attr); }
value: 設置屬性的值 writable: 值是否能夠重寫。true | false enumerable: 目標屬性是否能夠被枚舉。true | false configurable: 目標屬性是否能夠被刪除或是否能夠再次修改特性 true | false
當使用存取器描述屬性的特性的時候,容許設置如下特性屬性:
var obj = {}; Object.defineProperty(obj,"newKey",{ get:function (){} | undefined, set:function (value){} | undefined configurable: true | false enumerable: true | false });
注意:當使用了getter或setter方法,不容許使用writable和value這兩個屬性
當設置或獲取對象的某個屬性的值的時候,能夠提供getter/setter方法。
在特性中使用get/set屬性來定義對應的方法。
var obj = {}; var initValue = 'hello'; Object.defineProperty(obj,"newKey",{ get:function (){ //當獲取值的時候觸發的函數 return initValue; }, set:function (value){ //當設置值的時候觸發的函數,設置的新值經過參數value拿到 initValue = value; } }); //獲取值 console.log( obj.newKey ); //hello //設置值 obj.newKey = 'change value'; console.log( obj.newKey ); //change value
注意:get或set不是必須成對出現,任寫其一就能夠。若是不設置方法,則get和set的默認值爲undefined
在ie8下只能在DOM對象上使用,嘗試在原生的對象使用 Object.defineProperty()會報錯。
const obj1 = { a:1, }; const obj2 = Object.freeze(obj1); console.log(obj1 === obj2); // true console.log(Object.isExtensible(obj2)); // false Object.getOwnPropertyDescriptor(obj2,'a'); // {value: 1, writable: false, enumerable: true, configurable: false}
(1)給對象設置,Object.preventExtension(obj1)
,
禁止更改原型
,禁止添加屬性
,
(2)爲對象的每個屬性設置,writable:false
,
禁止更改屬性值,
(3)爲對象的每個屬性設置,configurable:false
。
注:
禁止添加屬性
,是Object.preventExtensions控制的,
而禁止刪除屬性
,是configuable:false控制的。
// 1. 禁止更改原型 Object.setPrototypeOf(obj2,{c:3}); // 非嚴格模式:Uncaught TypeError: #<Object> is not extensible // 嚴格模式:Uncaught TypeError: #<Object> is not extensible // 2. 禁止添加屬性 obj2.b = 2; // 非嚴格模式,靜默失敗,obj2仍是{a:1} // 嚴格模式:Uncaught TypeError: Cannot add property b, object is not extensible // 3. 禁止更改屬性值 obj2.a = 2; // 非嚴格模式,靜默失敗,obj2仍是{a:1} // 嚴格模式:Uncaught TypeError: Cannot assign to read only property 'a' of object '#<Object>' // 4. 禁止刪除已有屬性 delete obj2.a; // 非嚴格模式,返回false // 嚴格模式:Uncaught TypeError: Cannot delete property 'a' of #<Object> /// 5. 禁止更改writable爲true Object.defineProperty(obj2,'a',{ writable:true, }); // 非嚴格模式:Uncaught TypeError: Cannot redefine property: a // 嚴格模式:Uncaught TypeError: Cannot redefine property: a // 6. 禁止更改enumerable爲false Object.defineProperty(obj2,'a',{ enumerable:false, }); // 非嚴格模式:Uncaught TypeError: Cannot redefine property: a // 嚴格模式:Uncaught TypeError: Cannot redefine property: a // 7. 禁止更改configuable爲true Object.defineProperty(obj2,'a',{ configuable:true, }); // 非嚴格模式,靜默失敗,configuable仍是false // 嚴格模式:靜默失敗,configuable仍是false
注:
在嚴格模式下,更改configurable爲true,一樣是靜默失敗。
const obj1 = { a:1, }; const obj2 = Object.seal(obj1); console.log(obj1 === obj2); // true console.log(Object.isExtensible(obj2)); // false Object.getOwnPropertyDescriptor(obj2,'a'); // {value: 1, writable: true, enumerable: true, configurable: false}
(1)給對象設置,Object.preventExtension(obj1)
,
禁止更改原型,禁止添加屬性,
(2)爲對象的每個屬性設置,configurable:false
,
禁止更改屬性值,
注:
與Object.freeze不一樣的是,Object.seal
後的對象是可寫的writable:true
。
參考:
MDN-Object.defineProperty()
MDN-Object.seal()()
MDN-Object.freeze()()