js react vue 生成随机数 uuid
js react vue 生成随机数使用uuid生成随机数使用方法拓展使用uuid生成随机数我们在前端项目中经常需要自动生成随机数做业务id,一般都是写函数实现。比较麻烦,java中有uuid使用,其实前段也可以直接使用使用方法1.下载依赖npm install uuid2.引入依赖import { v4 as uuidv4 } from "uuid2.直接使用const id =uuidv4()
·
js react vue 生成随机数
使用uuid生成随机数
我们在前端项目中经常需要自动生成随机数做业务id,一般都是写函数实现。比较麻烦,java中有uuid使用,其实前段也可以直接使用
使用方法
1.下载依赖
npm install uuid
2.引入依赖
import { v4 as uuidv4 } from "uuid
2.直接使用
const id =uuidv4()
console.log(id)
e6a2f201-f720-4e98-8fea-7f473101acd3
拓展
如果你需要的随机数不需要这么长或字母开头,可以通过字符串的方法处理
const id = uuidv4().substring(0,8)
const id =(“a”+ uuidv4()).substring(0,8)
更多推荐
已为社区贡献2条内容
所有评论(0)