JS apply的巧妙用法以及擴展到Object.defineProperty的使用

Math.max 實現獲得數組中最大的一項

var array = [1,2,3,4,5];
var max = Math.max.apply(null, array);
console.log(max); // 5

調用的時候第一個參數給了一個null,這個是由於沒有對象去調用這個方法,只須要用這個方法幫助運算,獲得返回的結果就行,因此直接傳遞了一個null過去。html

Math.min 實現獲得數組中最小的一項

var array = [1,2,3,4,5];
var min= Math.min.apply(null, array);
console.log(min); // 1

在原生對象上面添加max與min方法

那就會須要用到原生對象方法Object.defineProperty(),會直接在一個對象上定義一個新屬性,或者修改一個對象的現有屬性, 並返回這個對象數組

    Object.defineProperty(Array.prototype, 'max', {  
        writable: false,  
        enumerable: false,  
        configurable: true,  
        value: function () {  
            return Math.max.apply(null, this);  
        }  
    });  
      
    Object.defineProperty(Array.prototype, 'min', {  
        writable: false,  
        enumerable: false,  
        configurable: true,  
        value: function () {  
            return Math.min.apply(null, this);  
        }  
    });  

直接在數組上調用便可:app

var arr = [54,545,2165,545,56];  
console.log(arr.max());  
console.log(arr.min()); 

 上面講到了Object.defineProperty的方法,下面咱們來理解下。函數

Object.defineProperty的使用

對象是由多個名/值對組成的無序的集合。對象中每一個屬性對應任意類型的值。定義對象可使用構造函數或字面量的形式:測試

var obj = new Object;  //obj = {}
obj.name = "張三";  //添加描述
obj.say = function(){};  //添加行爲

除了以上添加屬性的方式,還可使用Object.defineProperty定義新屬性或修改原有的屬性。this

Object.defineProperty()描述

語法:Object.defineProperty(obj, prop, descriptor)spa

參數說明:prototype

  • obj:必需。目標對象code

  • prop:必需。需定義或修改的屬性的名字htm

  • descriptor:必需。目標屬性所擁有的特性

返回值:

  • 傳入函數的對象。即第一個參數obj

針對屬性,咱們能夠給這個屬性設置一些特性,好比是否只讀不能夠寫;是否能夠被for..inObject.keys()遍歷。

給對象的屬性添加特性描述,目前提供兩種形式:數據描述和存取器描述。

數據描述

當修改或定義對象的某個屬性的時候,給這個屬性添加一些特性:

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
});

數據描述中的屬性都是可選的,來看一下設置每個屬性的做用。

value

屬性對應的值,可使任意類型的值,默認爲undefined

var obj = {}
//第一種狀況:不設置value屬性
Object.defineProperty(obj,"newKey",{

});
console.log( obj.newKey );  //undefined
------------------------------
//第二種狀況:設置value屬性
Object.defineProperty(obj,"newKey",{
    value:"hello"
});
console.log( obj.newKey );  //hello

writable

屬性的值是否能夠被重寫。設置爲true能夠被重寫;設置爲false,不能被重寫。默認爲false。

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

enumerable

此屬性是否能夠被枚舉(使用for...in或Object.keys())。設置爲true能夠被枚舉;設置爲false,不能被枚舉。默認爲false。

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
}

configurable

是否能夠刪除目標屬性或是否能夠再次修改屬性的特性(writable, configurable, enumerable)。設置爲true能夠被刪除或能夠從新設置特性;設置爲false,不能被刪除或不能夠從新設置特性。默認爲false。

這個屬性起到兩個做用:

  • 目標屬性是否可使用delete刪除

  • 目標屬性是否能夠再次設置特性

//-----------------測試目標屬性是否能被刪除------------------------
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

//-----------------測試是否能夠再次修改特性------------------------
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給對象添加屬性,那麼若是不設置屬性的特性,那麼configurableenumerablewritable這些值都爲默認的false

var obj = {};
//定義的新屬性後,這個屬性的特性中configurable,enumerable,writable都爲默認的值false
//這就致使了newkey這個是不能重寫、不能枚舉、不能再次設置特性
//
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

當設置或獲取對象的某個屬性的值的時候,能夠提供getter/setter方法。

  • 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

經過Object.defineProperty給一個對象的某個屬性添加多個方法,以下例子:

var obj = {};
Object.defineProperty(obj,'atrr',{
    get:function(){
        var self = this;
        var num = 0;
        return {
            add:function(value){
                return num + value;
            },
            reduce:function(value){
                return num - value;
            }
        }
    }
});

console.log(obj.atrr.add(5)); //5
console.log(obj.atrr.add(8)); //8
console.log(obj.atrr.reduce(8));  //-8

說明:在obj對象的atrr對象上添加了兩個方法add與reduce.

兼容性

在ie8下只能在DOM對象上使用,嘗試在原生的對象使用 Object.defineProperty()會報錯。

參考

Object.defineProperty()

 相關閱讀:《JS基礎篇--JS中的可枚舉屬性與不可枚舉屬性以及擴展 》

相關文章
相關標籤/搜索