使用JS 快速生成唯一标识符 UUID

112 阅读1分钟

生成唯一标识符uuid

const uuid = URL.createObjectURL(new Blob()).substr(-36)
console.log(uuid)

image.png