今天介绍一个小巧好用的唯一ID生成器,Github地址:https://github.com/ai/nanoid
一、安装
npm i nanoid
二、使用
import { nanoid } from 'nanoid'
let idA = nanoid() //=> "V1StGXR8_Z5jdHi6B-myT"
//也可以指定生成字符串的长度
let idB = nanoid(5)
今天介绍一个小巧好用的唯一ID生成器,Github地址:https://github.com/ai/nanoid
npm i nanoid
import { nanoid } from 'nanoid'
let idA = nanoid() //=> "V1StGXR8_Z5jdHi6B-myT"
//也可以指定生成字符串的长度
let idB = nanoid(5)
本文标题:JavaScript中唯一ID生成器NanoID的使用
本文链接:https://www.haomeiwen.com/subject/fytjhltx.html
网友评论