zoukankan      html  css  js  c++  java
  • 盘点JavaScript里好用的原生API

    转自:https://segmentfault.com/a/1190000002753931

    解析字符串对象

    我们都知道,JavaScript对象可以序列化为JSON,JSON也可以解析成对象,但是问题是如果出现了一个既不是JSON也不是对象的"东西",转成哪一方都不方便,那么eval就可以派上用场
    
    var obj = "{a:1,b:2}";   // 看起来像对象的字符串
    eval("("+ obj +")")      // {a: 1, b: 2}

    & (按位与)

    判断一个数是否为2的n次幂,可以将其与自身减一相与
    
    var number = 4
    (number & number -1) === 0 // true

    ^ (按位异或)

    不用第三个变量,就可以交换两个变量的值
    var a = 4,b = 3
    a = a ^ b  //    7
    b = a ^ b  //    4
    a = a ^ b  //    3
    

    格式化Date

    想得到format后的时间?现在不用再get年月日时分秒了,三步搞定
    
    var temp = new Date();
    var regex = ///g;
    (temp.toLocaleDateString() + ' ' + temp.toLocaleTimeString().slice(2)).replace(regex,'-');
    
    // "2015-5-7 9:04:10"
    
    想将format后的时间转换为时间对象?直接用Date的构造函数
    
    new Date("2015-5-7 9:04:10");
    
    // Thu May 07 2015 09:04:10 GMT+0800 (CST)
    经测试发现火狐没法对format后的时间字符串使用Date.parse(),故这个方法在火狐上不好使
    
    想将一个标准的时间对象转换为unix时间戳?valueOf搞定之
    
    (new Date).valueOf();
    
    // 1431004132641
    
    许多朋友还提醒了这样可以快速得到时间戳
    
    +new Date
    // 1431004132641
    

    一元加

    一元加可以快速将字符串的数字转换为数学数字,即
    var number = "23" 
    typeof number  // string
    typeof +number // number
    
    可以将时间对象转为时间戳
    new Date  //  Tue May 12 2015 22:21:33 GMT+0800 (CST)
    +new Date //  1431440459887
    

    转义URI

    需要将url当做参数在路由中传递,现在转义之
    
    var url = encodeURIComponent('http://segmentfault.com/questions/newest')
    
    // "http%3A%2F%2Fsegmentfault.com%2Fquestions%2Fnewest"
    
    再反转义
    
    decodeURIComponent(url)
    // "http://segmentfault.com/questions/newest"
    

    Number

    希望保留小数点后的几位小数,不用再做字符串截取了,toFixed拿走
    number.toFixed()     // "12346"
    number.toFixed(3)    // "12345.679"
    number.toFixed(6)    // "12345.678900"
    
    参数范围为0~20,不写默认0
    

    类型检测

    typeof是使用最频繁的类型检测手段
    
    typeof 3        // "number"
    typeof "333"    // "string"
    typeof false    // "boolean"
    
    对于基本(简单)数据类型还是挺好的,但是一旦到了引用数据类型的时候,就不那么好使了
    
    typeof new Date()   // "object"
    typeof []           // "object"
    typeof {}           // "object"
    typeof null         // "object"      
    
    前三个还能忍,null居然也返回object,你是在逗我吗!!!(ps:其实这是JavaScript的bug 人艰不拆 ꒰・◡・๑꒱ )
    
    这时,我们会使用instanceof
    
    toString instanceof Function
    // true
    (new Date) instanceof Date
    // true
    [] instanceof Object
    // true
    [] instanceof Array
    // true
    
    其实我们可以发现,[] 和 Object得到了true,虽然我们知道,[]也是对象,但是我们希望一个能更准确的判断类型的方法,现在它来了
    

    使用Object.prototype.toString()来判断,为了让每一个对象都能通过检测,我们需要使用Function.prototype.call或者Function.prototype.apply的形式来调用
    
    var toString = Object.prototype.toString;
    
    toString.call(new Date)    // "[object Date]"
    toString.call(new Array)   // "[object Array]"
    toString.call(new Object)  // "[object Object]"
    toString.call(new Number)  // "[object Number]"
    toString.call(new String)  // "[object String]"
    toString.call(new Boolean) // "[object Boolean]"
    
    要注意的是:toString方法极有可能被重写,所以需要使用的时候,
    可以直接使用Object.prototype.toString()方法
    

    实现继承

    看一个官方给的例子
    //Shape - superclass
    function Shape() {
      this.x = 0;
      this.y = 0;
    }
    
    Shape.prototype.move = function(x, y) {
        this.x += x;
        this.y += y;
        console.info("Shape moved.");
    };
    
    // Rectangle - subclass
    function Rectangle() {
      Shape.call(this); //call super constructor.
    }
    
    Rectangle.prototype = Object.create(Shape.prototype);
    
    var rect = new Rectangle();
    
    rect instanceof Rectangle //true.
    rect instanceof Shape //true.
    
    rect.move(1, 1); //Outputs, "Shape moved."
    
    通过call来获取初始化的属性和方法,通过Object.create来获取原型对象上的属性和方法
    

    迭代

    ES5出了挺多的迭代函数,如map,filter,some,every,reduce等,这里有传送门,可以看到挺多的例子
    

    http://segmentfault.com/a/1190000002687651

    Array

    具体的api这里介绍的很详细。
    

    https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Glob...

    这里就提几句:
    pop,push,reverse,shift,sort,splice,unshift会改变原数组
    
    join,concat,indexOf,lastIndexOf,slice,toString不会改变原数组
    
    map,filter,some,every,reduce,forEach这些迭代方法不会改变原数组
    
    几个注意点:
    
    1 shift,pop会返回那个被删除的元素
    2 splice 会返回被删除元素组成的数组,或者为空数组
    3 push 会返回新数组长度
    4 some 在有true的时候停止
    5 every 在有false的时候停止
    6 上述的迭代方法可以在最后追加一个参数thisArg,它是执行 callback 时的 this 值。
     
  • 相关阅读:
    ORACLE定时备份
    解压cpio.gz
    Fusioncharts的数字格式化
    linux apache+php+mysql安装及乱码解决办法
    两个Beta函数类型的积分及其一般形式
    【转载】巴塞尔问题(Basel Problem)的多种解法
    两本关于各种刁钻积分计算的书
    一个超几何函数类型的积分
    一个取整函数积分的一般形式
    Clausen Functions (and related series, functions, integrals)
  • 原文地址:https://www.cnblogs.com/lixiangyong/p/javascript.html
Copyright © 2011-2022 走看看