随机生成字符串,可用来当id
Posted lihong-123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了随机生成字符串,可用来当id相关的知识,希望对你有一定的参考价值。
// 随机生成字符串
RandomNumb(n) {
let str = ‘abcdefghijklmnopqrstuvwxyz9876543210‘;
let tmp = ‘‘,
i = 0,
l = str.length;
for (i = 0; i < n; i++) {
tmp += str.charAt(Math.floor(Math.random() * l));
}
return tmp;
}
var id = vm.RandomNumb(20)
console.log(id)
以上是关于随机生成字符串,可用来当id的主要内容,如果未能解决你的问题,请参考以下文章
Swift - Cloud Firestore 中的唯一 ID