记录:VUE3中UUID 生成唯一标识
npm install uuid 或 yarn add uuid或 pnpm add uuid。
·
安装
npm install uuid 或 yarn add uuid 或 pnpm add uuid
import { v4 as uuid4 } from 'uuid'
/** 生成一个以字母开始的唯一标识符 */
function generateLetterPrefixedId() {
let id = '';
do {
// 生成一个UUID并取其前几个字符
id = uuid4().substring(0, 8).toUpperCase();
// 如果第一个字符不是字母,则继续循环
}
while (!/^[a-zA-Z]/.test(id));
return id;
}
const id = generateLetterPrefixedId();
console.log(id ) // EE43F48D
uuid.d.ts
uuid.d.ts
declare module 'uuid'
更多推荐
已为社区贡献1条内容
所有评论(0)