Skip to content
On this page

Id 生成id

生成简单id

根据前缀 + 时间戳 + 10位随机生成id。

js
/**
 * prefix 随机生成的字符串前缀
 */
buildShortUUID('my-id')

生成唯一uuid

js
buildUUID()