最近项目中有不少地方需要判断数据类型,但是判断数据类型也有好几种方法,并且每种方法判断的数据类型也有局限性,所以想总结一下,方便以后查阅。
分别是 typeof
,instanceof
,Object.prototype.toString.call()
number,string,boolean,object,undfined,function
对象和数组
,还有null
,因为都返回的是object
1. 对于数字类型的操作数而言, typeof 返回的值是 number。比如:typeof(1),返回的值就是number。
2. 对于字符串类型, typeof 返回的值是 string。比如:typeof(“123”),返回的值是string。
3. 对于布尔类型, typeof 返回的值是 boolean 。比如:typeof(true),返回的值是boolean。
4. 对于对象、数组、null 返回的值是 object 。比如:typeof(window),typeof(document),typeof(null)返回的值都是object。
5. 对于函数类型,返回的值是 function。比如:typeof(eval),typeof(Date)返回的值都是function。
6. 如果运算数是没有定义的(比如说不存在的变量、函数或者undefined),将返回undefined。 比如:typeof(sss)、typeof(undefined)都返回undefined。
下面 我们将用程序代码验证一下:
console.log(typeof(1)); //number
console.log(typeof(NaN)); //number
console.log(typeof("123")); //string
console.log(typeof("123" + 12)); //string
console.log(typeof("123" + Date)); //string
console.log(typeof(true)); //boolean
console.log(typeof(window)); //object
console.log(typeof(document)); //object
console.log(typeof(null)); //object
console.log(typeof([8])); //object
console.log(typeof({a:1})); //object
console.log(typeof(Date)); //function
console.log(typeof(sss)); //undefined
console.log(typeof(undefined)); //undefined
局限性:
由上面程序代码可验证,很遗憾的一点是,typeof 在判断一个 object的数据的时候只能告诉我们这个数据是 object, 而不能细致的具体到是哪一种 object。所以要 想区分对象、数组、null,单纯使用 typeof 是不行的。
instanceof 是用来 判断数据是否是某个对象的实例,返回一个布尔值
。
基本用法:
// 判断 p 是否为 Person 的实例
function Person(name) {
this.name = name
}
const p = new Person('sunshine')
p instanceof Person // true
// 这里的 p 是 Person 函数构造出来的,所以顺着 p 的原型链可以找到Object的构造函数
p.__proto__ === Person.prototype // true
p.__proto__.__proto__ === Object.prototype // true
缺点:
对于基本类型的数据,instanceof是不能直接判断它的类型的
,因为实例是一个对象或函数创建的,是引用类型,所以需要通过基本类型对应的 包装对象 来判断。所以对于 null
和 undefined
这两个家伙就检测不了了~5 instanceof Number // false
new Number(5) instanceof Number // true
let arr = [1,2,3]
console.log(Object.prototype.toString.call(arr) === '[object Array]') // true
console.log(arr instanceof Array) // true
console.log(arr instanceof Object) // true
let fn = function(){}
console.log(fn instanceof Object) // true
下面介绍一种方法,对每一种数据类型都实用的。
在判断数据类型时,我们称 Object.prototype.toString 为 “万能方法” “终极方法”,工作中也是比较常用而且准确。
对于Object.prototype.toString() 方法,会返回一个形如 “[object XXX]” 的字符串
Object.prototype.toString.call('stjd')
//"[object String]"
Object.prototype.toString.call(1)
//"[object Number]"
Object.prototype.toString.call(true)
//"[object Boolean]"
Object.prototype.toString.call(null)
//"[object Null]"
Object.prototype.toString.call(undefined)
//"[object Undefined]"
a 函数类型
Object.prototype.toString.call(function(){}) //这个方法就建立在js任何类型皆可视为对象**
// "[object Function]"
b 日期类型
var date = new Date();
Object.prototype.toString.call(date);
//”[object Date]”
c 数组类型
Object.prototype.toString.call([2])
//"[object Array]"
d 对象类型
Object.prototype.toString.call({q:8})
//"[object Object]"
e 正则表达式
var reg = /[hbc]at/gi;
Object.prototype.toString.call(reg); // "[object RegExp]"
f 自定义类型
function Person(name, age) {
this.name = name;
this.age = age;
}
var person = new Person("Rose", 18);
Object.prototype.toString.call(person);
//”[object Object]”
显然这种方法不能准确判断person是Person类的实例,而只能用instanceof 操作符来进行判断,如下所示:
console.log(person instanceof Person);//输出结果为true
注意:
Object.prototype.toString()本身是允许被修改的,而我们目前所讨论的关于Object.prototype.toString()这个方法的应用都是假设toString()方法未被修改为前提的。
因为实例对象有可能会自定义toString()方法,会覆盖Object.prototype.toString(), 所以在使用时,最好加上call()。
有的时候我们也可以封装判断数据类型的方法。
// 判断数据类型的函数
function getType(data) {
return Object.prototype.toString.call(data).slice(8, -1);
}
// 使用
if(this.getType(json) == 'Object'){
console.log('Object类型')
}else if (this.getType(json) == 'Array'){
console.log('Array类型')
}
js中的isArray()是Array类型的一个静态方法,使用它可以判断一个值是否为数组。
返回一个布尔值。
var arr = [1,2,3]
console.log(Array.isArray(arr)) //true
该方法可直接返回布尔值,在条件表达式中,使用该方法非常实用。
- js数据类型的判断主要有三种方法:
typeof
,instanceof
,Object.prototype.toString.call()
- typeof可以区分
原始类型
,undfined
和function
数据类型- Object.prototype.toString.call() 区分的数据类型适用范围更大,但是无法区分自定义对象类型
- 区分自定义对象类型使用 instanceof 操作符
- js中null:即是对象,又不是对象,史称【薛定谔的对象】
- 判断数据类型方法有很多,实际使用需要根据自己的需求使用最适合自己的方法
参考:
Object.prototype.toString.call()方法使用
JavaScript最全的判断数据类型的方法
instanceof讲的比较好