使用UUID的時候会前,發(fā)現(xiàn)實現(xiàn)并沒有時間戳好乐,這讓我很害怕,萬一重復(fù)了呢瓦宜,雖然概率很小蔚万。。临庇。
查詢關(guān)鍵詞: Unicode反璃、UUID 昵慌、時間戳
于是我就把別人實現(xiàn)的UUID后面加了時間戳,又發(fā)現(xiàn)淮蜈,太丑了吧斋攀,這樣就不像uuid,顯得不專業(yè)礁芦。哦蜻韭。那就換一個概念,把數(shù)字換字母...
我的思路是用Unicode值創(chuàng)建字符串柿扣, 用這個函數(shù)
String.fromCharCode
由于很可能存在編碼問題肖方,比如,這樣....
完犢子了未状,跑到數(shù)據(jù)庫儲存成什么鬼都不知道俯画,。
65 - 90 對應(yīng)的是A-Z
這樣就比較放心了
完整代碼
var st = []
;((+new Date) + '').split('').map(function(e, index, arr){
st.push(String.fromCharCode((+e)+66))
})
st = st.join('')
也可以這樣(Tip: 被皮皮鼠吐槽司草,map的用法不對艰垂,從新改了下正確 的用法。)
var arr = (+new Date + '').split('')
arr = arr.map(e=>+e+65)
String.fromCharCode.apply(this, arr)
基于別人代碼實現(xiàn)的uuid
function Uuid(len, radix) {
var chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'.split('');
var uuid = [], i;
radix = radix || chars.length;
if (len) {
// Compact form
for (i = 0; i < len; i++) uuid[i] = chars[0 | Math.random()*radix];
} else {
// rfc4122, version 4 form
var r;
// rfc4122 requires these characters
uuid[8] = uuid[13] = uuid[18] = uuid[23] = '-';
uuid[14] = '4';
// Fill in random data. At i==19 set the high bits of clock sequence as
// per rfc4122, sec. 4.1.5
for (i = 0; i < 36; i++) {
if (!uuid[i]) {
r = 0 | Math.random()*16;
uuid[i] = chars[(i == 19) ? (r & 0x3) | 0x8 : r];
}
}
}
var st = []
;((+new Date) + '').split('').map(function(e, index, arr){
st.push(String.fromCharCode((+e)+66))
})
st = st.join('')
return uuid.join('')+st;
}
print:
Uuid(20, 120)
// BdS5Qhw8eCGCHFEEKHKEJK
廣告:
推薦一個比較好用的移動端輕量級組件
https://github.com/0123cf/xxy
--END--