盤點JavaScript裡好用的原生API,盤點javascriptapi

來源:互聯網
上載者:User

盤點JavaScript裡好用的原生API,盤點javascriptapi

這段時間翻了一番JavaScript的api,發現不少好的輪子,省去造的麻煩了。

解析字串對象

我們都知道,JavaScript對象可以序列化為JSON,JSON也可以解析成對象,但是問題是如果出現了一個既不是JSON也不是對象的”東西”,轉成哪一方都不方便,那麼eval就可以派上用場

 
  1. var obj = "{a:1,b:2}"; // 看起來像對象的字串
  2. eval("("+ obj +")") // {a: 1, b: 2}

因為 eval 可以執行字串運算式,我們希望將 obj 這個字串對象 執行成真正的對象,那麼就需要用eval。但是為了避免eval 將帶 {} 的 obj 當語句來執行,我們就在obj的外面套了對 (),讓其被解析成運算式。

& (按位與)

判斷一個數是否為2的n次冪,可以將其與自身減一相與

 
  1. var number = 4
  2. (number & number -1) === 0 // true
^ (按位異或)

不同第三個變數,就可以交換兩個變數的值

 
  1. var a = 4,b = 3
  2. a = a ^ b // 7
  3. b = a ^ b // 4
  4. a = b ^ a // 3
格式化Date

想得到format後的時間?現在不用再get年月日時分秒了,三步搞定

 
  1. var temp = new Date();
  2. var regex = /\//g;
  3. (temp.toLocaleDateString() + ' ' + temp.toLocaleTimeString().slice(2)).replace(regex,'-');
  4.  
  5. // "2015-5-7 9:04:10"

想將format後的時間轉換為時間對象?直接用Date的建構函式

 
  1. new Date("2015-5-7 9:04:10");
  2.  
  3. // Thu May 07 2015 09:04:10 GMT+0800 (CST)

想將一個標準的時間對象轉換為unix時間戳記?valueOf搞定之

 
  1. (new Date).valueOf();
  2.  
  3. // 1431004132641

許多朋友還提醒了這樣可以快速得到時間戳記

 
  1. +new Date
一元加

一元加可以快速將字串的數字轉換為數學數字,即

 
  1. var number = "23"
  2. typeof number // string
  3. typeof +number // number

可以將時間對象轉為時間戳記

 
  1. new Date // Tue May 12 2015 22:21:33 GMT+0800 (CST)
  2. +new Date // 1431440459887
轉義URI

需要將url當做參數在路由中傳遞,現在轉義之

 
  1. var url = encodeURIComponent('http://segmentfault.com/questions/newest')
  2.  
  3. // "http%3A%2F%2Fsegmentfault.com%2Fquestions%2Fnewest"

再反轉義

 
  1. decodeURIComponent(url)
  2. // "http://segmentfault.com/questions/newest"
Number

希望保留小數點後的幾位小數,不用再做字串截取了,toFixed拿走

 
  1. number.toFixed() // "12346"
  2. number.toFixed(3) // "12345.679"
  3. number.toFixed(6) // "12345.678900"

參數範圍為0~20,不寫預設0

類型檢測

typeof是使用最頻繁的類型檢測手段

 
  1. typeof 3 // "number"
  2. typeof "333" // "string"
  3. typeof false // "boolean"

對於基本(簡單)資料類型還是挺好的,但是一旦到了引用資料類型的時候,就不那麼好使了

 
  1. typeof new Date() // "object"
  2. typeof [] // "object"
  3. typeof {} // "object"
  4. typeof null // "object"

前三個還能忍,null居然也返回object,你是在逗我嗎!!!(ps:其實這是JavaScript的bug 人艱不拆 ꒰・◡・๑꒱ )

這時,我們會使用instanceof

 
  1. toString instanceof Function
  2. // true
  3. (new Date) instanceof Date
  4. // true
  5. [] instanceof Object
  6. // true
  7. [] instanceof Array
  8. // true

其實我們可以發現,[] 和 Object得到了true,雖然我們知道,[]也是對象,但是我們希望一個能更準確的判斷類型的方法,現在它來了
使用Object.prototype.toString()來判斷,為了讓每一個對象都能通過檢測,我們需要使用Function.prototype.call或者Function.prototype.apply的形式來調用

 
  1. var toString = Object.prototype.toString;
  2.  
  3. toString.call(new Date) // "[object Date]"
  4. toString.call(new Array) // "[object Array]"
  5. toString.call(new Object) // "[object Object]"
  6. toString.call(new Number) // "[object Number]"
  7. toString.call(new String) // "[object String]"
  8. toString.call(new Boolean) // "[object Boolean]"

要注意的是:toString方法極有可能被重寫,所以需要使用的時候,
可以直接使用Object.prototype.toString()方法

實現繼承

看一個官方給的例子

 
  1. //Shape - superclass
  2. function Shape() {
  3. this.x = 0;
  4. this.y = 0;
  5. }
  6.  
  7. Shape.prototype.move = function(x, y) {
  8. this.x += x;
  9. this.y += y;
  10. console.info("Shape moved.");
  11. };
  12.  
  13. // Rectangle - subclass
  14. function Rectangle() {
  15. Shape.call(this); //call super constructor.
  16. }
  17.  
  18. Rectangle.prototype = Object.create(Shape.prototype);
  19.  
  20. var rect = new Rectangle();
  21.  
  22. rect instanceof Rectangle //true.
  23. rect instanceof Shape //true.
  24.  
  25. 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…
這裡就提幾句:
join,pop,push,reverse,shift,sort,splice,unshift會改變原數組

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 值。


原文:http://segmentfault.com/a/1190000002753931

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.