//我此次運行生成的是:0.5834165740043102 Math.random();
//如今時間戳是1482645606622 Date.now();
//將1482645606622轉換成二進制:10101100100110100100100001001000011011110 (1482645606622).toString(2); //轉換成16進制:159349090de MongDB中的ObjectID就是24位16進制數 (1482645606622).toString(16); //最大進制支持轉爲36進制,使用字符是0-9a-z :ix48wvry (1482645606622).toString(36);
/** * 生成一個用不重複的ID */ function GenNonDuplicateID(){ return Math.random().toString() } //生成一個相似 0.1283460319177394的ID GenNonDuplicateID()
/** * 生成一個用不重複的ID */ function GenNonDuplicateID(){ return Math.random().toString(16) } //函數將生成相似 0.c1615913fa915 的ID GenNonDuplicateID()
/** * 生成一個用不重複的ID */ function GenNonDuplicateID(){ return Math.random().toString(36) } //函數將生成相似 0.hefy7uw6ddzwidkwcmxkzkt9 的ID GenNonDuplicateID()
/** * 生成一個用不重複的ID */ function GenNonDuplicateID(){ return Math.random().toString(36).substr(2) } //函數將生成相似 8dlv9vabygks2cbg1spds4i 的ID GenNonDuplicateID()
優點:使用toString的進制轉化能夠實現更短的字符串表示更多的範圍dom
缺點:用一個隨機數做爲ID,隨着使用次數的累積,必然會出現相同的兩個ID函數
/** * 生成一個用不重複的ID */ function GenNonDuplicateID(){ let idStr = Date.now().toString(36) idStr += Math.random().toString(36).substr(2) return idStr } //函數將生成相似 ix49sfsnt7514k5wpflyb5l2vtok9y66r 的ID GenNonDuplicateID()
/** * 生成一個用不重複的ID */ function GenNonDuplicateID(randomLength){ let idStr = Date.now().toString(36) idStr += Math.random().toString(36).substr(2,randomLength) return idStr } // GenNonDuplicateID(3) 將生成相似 ix49wl2978w 的ID GenNonDuplicateID(3)
可是,這樣生成的ID前面幾位老是相同。ui
/** * 生成一個用不重複的ID */ function GenNonDuplicateID(randomLength){ return Number(Math.random().toString().substr(2,randomLength) + Date.now()).toString(36) } //GenNonDuplicateID()將生成 rfmipbs8ag0kgkcogc 相似的ID GenNonDuplicateID()
只使用時間戳,有個能在同一時間多人訪問生成的是同樣的。加上隨機數能夠實現惟一。再加上自定義長度,使UUID更靈活。code
萬能方案:ip
/** * 生成一個用不重複的ID * @param { Number } randomLength */ function getUuiD(randomLength){ return Number(Math.random().toString().substr(2,randomLength) + Date.now()).toString(36) }