運用Object.prototype.toString推斷數據類型

工作中運用
typeof
instanceof 操作符每每沒法獲得數據的正確範例,本文將連繫一些知識點,寫一個東西要領,來處理這個痛點。

相干知識點:

  • JavaScript 原生供應Object對象,一切其他對象都繼續自Object對象,即那些對象都是Object對象的實例。
  • Object對象自身是一個組織函數,也能夠看成東西要領運用,將恣意值轉為對象。比方:

        // 基礎範例數據將返回包裝對象
            var str = 'hello world';
            str === Object( str ) // false
            Object( str ) instanceof String  //true
        
            var num = 123 ; 
            num === Object( num ) // false 
            Object(num) instanceof Number // true
        
        //龐雜範例(對象、援用範例)將直接返回
            var obj = { name:"mirror" }
            obj === Object( obj )    // true
            
            var arr = [ 'a' , 'b' , 'c' ]
            arr === Object( arr )    // true
  • Object.prototype.toString()返回當前對象對應的字符串情勢。比方:

        var obj = new Object();
        obj.toString()  //  "[object object]"
  • Object的實例對象能夠自定義toString要領,覆蓋掉Object.prototype.toString要領。比方:

       var arr = [ 'a' , 'b' ];
       arr.toString() // 'a,b'
  • 運用call要領,能夠在恣意值上挪用這個要領,協助我們推斷這個值的範例。比方:

        Object.prototype.toString.call(2) // "[object Number]"   
        Object.prototype.toString.call('hello world' ) // "[object String]"  
        Object.prototype.toString.call( true ) // "[object Boolean]"  

要領封裝

    function type (data){
        if(arguments.length === 0) return new Error('type要領未傳參');
        var typeStr = Object.prototype.toString.call(data);
        return typeStr.match(/\[object (.*?)\]/)[1].toLowerCase();      
    }
    
    type( {} ) //"object"
    type( new Date() ) //"date"
    type( [] ) //"array"

細緻解說請參考阮一峰博客

    原文作者:Mirror
    原文地址: https://segmentfault.com/a/1190000015181000
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞