浅谈Object.prototype.toString.call()方法
在javascript
里使用typeof
判断数据类型,只能区分基本类型,即:number
、string
、undefined
、boolean
、object
。
对于null
、array
、function
、object
来说,使用typeof
都会统一返回object
字符串。
要想区分对象、数组、函数、单纯使用typeof
是不行的。在js中,可以通过object.prototype.tostring
方法,判断某个对象之属于哪种内置类型。
分为null
、string
、boolean
、number
、undefined
、array
、function
、object
、date
、math
。
1. 判断基本类型
object.prototype.tostring.call(null); // "[object null]" object.prototype.tostring.call(undefined); // "[object undefined]" object.prototype.tostring.call(“abc”);// "[object string]" object.prototype.tostring.call(123);// "[object number]" object.prototype.tostring.call(true);// "[object boolean]"
2. 判断原生引用类型
**函数类型** function fn(){ console.log(“test”); } object.prototype.tostring.call(fn); // "[object function]"
**日期类型** var date = new date(); object.prototype.tostring.call(date); // "[object date]"
**数组类型** var arr = [1,2,3]; object.prototype.tostring.call(arr); // "[object array]"
**正则表达式** var reg = /[hbc]at/gi; object.prototype.tostring.call(reg); // "[object regexp]"
**自定义类型** function person(name, age) { this.name = name; this.age = age; } var person = new person("rose", 18); object.prototype.tostring.call(arr); // "[object object]"
很明显这种方法不能准确判断person
是person
类的实例,而只能用instanceof
操作符来进行判断,如下所示:
console.log(person instanceof person); // true
3. 判断原生json对象
var isnativejson = window.json && object.prototype.tostring.call(json); console.log(isnativejson);// 输出结果为”[object json]”说明json是原生的,否则不是;
注意:object.prototype.tostring()本身是允许被修改的,而我们目前所讨论的关于object.prototype.tostring()这个方法的应用都是假设tostring()方法未被修改为前提的。
4. 实例:为array对象添加一个去除重复项的方法
input
[false, true, undefined, null, nan, 0, 1, {}, {}, 'a', 'a', nan].uniq()
output
[false, true, undefined, null, nan, 0, 1, {}, {}, 'a']
这里要注意,nan === nan 为false,{} === {}为false。
array.prototype.uniq = function () { if (!this.length || this.length == 0) return this; var res = [], key, hasnan = false, temp = {}; for (var i = 0 ; i < this.length; i++) { if (typeof this[i] === 'object') { res.push(this[i]); } else if (this[i] != this[i]) { // 如果当前遍历元素是nan if (!hasnan) { res.push(this[i]); hasnan = true; } } else { key = typeof(this[i]) + this[i]; if (!temp[key]) { res.push(this[i]); temp[key] = true; } } } return res; }
另一种解法:
array.prototype.uniq = function () { var res = []; var flag = true; this.foreach(function(x) { if (res.indexof(x) == -1) { if (x != x) { if (flag) { res.push(x); flag = false; } } else { res.push(x); } } }) return res; }
下一篇: socket传送文件格式的问题
推荐阅读
-
Thinkphp中数据按分类嵌套循环实现方法_PHP
-
php mailer类调用远程SMTP服务器发送邮件实现方法,mailersmtp_PHP教程
-
mysql 1418无法创建函数的解决方法_MySQL
-
php计算两个日期相差天数的方法_PHP
-
php的array_multisort()使用方法介绍_php基础
-
smarty include file 使用变量的方法_PHP教程
-
在smarty中调用php内置函数的方法_php技巧
-
Android TextView 在java代码中改变字体的颜色的方法
-
使用PHP生成二维码的两种方法(带logo图像)
-
PHP类实例教程:abstract类和abstract方法