图形验证码知识点整理 Object.prototype.toString.call()等
使用typeof bar === "object"
检测”bar”是否为对象有什么缺点?如何避免?这是一个十分常见的问题,用 typeof
是否能准确判断一个对象变量,答案是否定的,null
的结果也是 object,Array
的结果也是 object,有时候我们需要的是 "纯粹" 的 object 对象。如何避免呢?比较好的方式是:
console.log(Object.prototype.toString.call(obj) === "[object Object]");
使用以上方式可以很好的区分各种类型:
(无法区分自定义对象类型,自定义类型可以采用instanceof区分)
console.log(Object.prototype.toString.call("jerry"));//[object String] console.log(Object.prototype.toString.call(12));//[object Number] console.log(Object.prototype.toString.call(true));//[object Boolean] console.log(Object.prototype.toString.call(undefined));//[object Undefined] console.log(Object.prototype.toString.call(null));//[object Null] console.log(Object.prototype.toString.call({name: "jerry"}));//[object Object] console.log(Object.prototype.toString.call(function(){}));//[object Function] console.log(Object.prototype.toString.call([]));//[object Array] console.log(Object.prototype.toString.call(new Date));//[object Date] console.log(Object.prototype.toString.call(/\d/));//[object RegExp] function Person(){}; console.log(Object.prototype.toString.call(new Person));//[object Object]
为什么这样就能区分呢?于是我去看了一下toString方法的用法:toString方法返回反映这个对象的字符串。
那为什么不直接用obj.string()呢?
console.log("jerry".toString());//jerry console.log((1).toString());//1 console.log([1,2].toString());//1,2 console.log(new Date().toString());//Wed Dec 21 2016 20:35:48 GMT+0800 (中国标准时间) console.log(function(){}.toString());//function (){} console.log(null.toString());//error console.log(undefined.toString());//error
同样是检测对象obj调用toString方法(关于toString()方法的用法的可以参考toString的详解),obj.toString()的结果和Object.prototype.toString.call(obj)的结果不一样,这是为什么?
这是因为toString为Object的原型方法,而Array
,function等类型作为Object的实例,都重写了toString方法。不同的对象类型调用toString方法时,根据原型链的知识,调用的是对应的重写之后的toString方法(function类型返回内容为函数体的字符串,Array类型返回元素组成的字符串.....),而不会去调用Object上原型toString方法(返回对象的具体类型),所以采用obj.toString()不能得到其对象类型,只能将obj转换为字符串类型;因此,在想要得到对象的具体类型时,应该调用Object上原型toString方法。
我们可以验证一下,将数组的toString方法删除,看看会是什么结果:
var arr=[1,2,3]; console.log(Array.prototype.hasOwnProperty("toString"));//true console.log(arr.toString());//1,2,3 delete Array.prototype.toString;//delete操作符可以删除实例属性 console.log(Array.prototype.hasOwnProperty("toString"));//false console.log(arr.toString());//"[object Array]"
删除了Array的toString方法后,同样再采用arr.toString()方法调用时,不再有屏蔽Object原型方法的实例方法,因此沿着原型链,arr最后调用了Object的toString方法,返回了和Object.prototype.toString.call(arr)相同的结果。
各种判断类型的方法汇总
1、最常见的判断方法:typeof
1
2
3
4
5
6
|
alert( typeof a) ------------> string alert( typeof b) ------------> number alert( typeof c) ------------> object alert( typeof d) ------------> object alert( typeof e) ------------> function alert( typeof f) ------------> function |
其中typeof返回的类型都是字符串形式,需注意,例如:
1
2
|
alert( typeof a == "string" ) -------------> true alert( typeof a == String) ---------------> false |
另外typeof 可以判断function的类型;在判断除Object类型的对象时比较方便。
2、判断已知对象类型的方法: instanceof
1
2
3
4
|
alert(c instanceof Array) ---------------> true alert(d instanceof Date) alert(f instanceof Function) ------------> true alert(f instanceof function ) ------------> false |
注意:instanceof 后面一定要是对象类型,并且大小写不能错,该方法适合一些条件选择或分支。
3、根据对象的constructor判断: constructor
alert(c.constructor === Array) ----------> true
alert(d.constructor === Date) -----------> true
alert(e.constructor === Function) -------> true
注意: constructor 在类继承时会出错
eg:
1
2
3
4
5
6
|
function A(){}; function B(){}; A.prototype = new B(); //A继承自B var aObj = new A(); alert(aobj.constructor === B) -----------> true ; alert(aobj.constructor === A) -----------> false ; |
而instanceof方法不会出现该问题,对象直接继承和间接继承的都会报true:
1
2
|
alert(aobj instanceof B) ----------------> true ; alert(aobj instanceof B) ----------------> true ; |
言归正传,解决construtor的问题通常是让对象的constructor手动指向自己:
1
2
3
|
aobj.constructor = A; //将自己的类赋值给对象的constructor属性 alert(aobj.constructor === A) -----------> true ; alert(aobj.constructor === B) -----------> false ; //基类不会报true了; |
4、通用但很繁琐的方法: prototype
1
2
3
4
5
6
|
alert(Object.prototype.toString.call(a) === ‘[object String] ') -------> true; alert(Object.prototype.toString.call(b) === ‘[object Number]' ) -------> true ; alert(Object.prototype.toString.call(c) === ‘[object Array] ') -------> true; alert(Object.prototype.toString.call(d) === ‘[object Date]' ) -------> true ; alert(Object.prototype.toString.call(e) === ‘[object Function] ') -------> true; alert(Object.prototype.toString.call(f) === ‘[object Function]' ) -------> true ; |
大小写不能写错,比较麻烦,但胜在通用。