/**
* 生成一個用不重複的ID
*/
function GenNonDuplicateID():String{
}複製代碼
//我此次運行生成的是:0.5834165740043102
Math.random()複製代碼
//如今時間戳是1482645606622
Date.now() = 1521009303858複製代碼
//將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(3)
}
//函數將生成相似 8dlv9vabygks2cbg1spds4i 的ID
GenNonDuplicateID()複製代碼
然而用一個隨機數做爲ID,隨着使用次數的累積,必然會出現相同的兩個IDdom
/**
* 生成一個用不重複的ID
*/
function GenNonDuplicateID(){
let idStr = Date.now().toString(36)
idStr += Math.random().toString(36).substr(3)
return idStr
}
//函數將生成相似 ix49sfsnt7514k5wpflyb5l2vtok9y66r 的ID
GenNonDuplicateID()複製代碼
/**
* 生成一個用不重複的ID
*/
function GenNonDuplicateID(randomLength){
let idStr = Date.now().toString(36)
idStr += Math.random().toString(36).substr(3,randomLength)
return idStr
}
// GenNonDuplicateID(3) 將生成相似 ix49wl2978w 的ID
GenNonDuplicateID(3)複製代碼
這樣生成的ID前面幾位老是相同,看着不爽,因而再改改函數
/**
* 生成一個用不重複的ID
*/
function GenNonDuplicateID(randomLength){
return Number(Math.random().toString().substr(3,randomLength) + Date.now()).toString(36)
}
//GenNonDuplicateID()將生成 rfmipbs8ag0kgkcogc 相似的ID
GenNonDuplicateID()複製代碼