nanoid库和uuid库功能类似,都可以生成uuid。 一、nanoid与uuid相比,优点有: 1、更加轻便, 2、更安全, 3、快速、紧凑, 4、可自定义字母, import { customAlphabet } from 'nanoid' const nanoid = customAlphabet ('ABCDEF1234567890', 12) model.id = nanoid() 5、没有第三方依赖, 6、兼容性方面,除了...
1.安装nanoid库 npm i nanoid 2.引入nanoid库 import {nanoid} from 'nanoid' 3.使用nanoid nanoid(); 1.安装nanoid库 2.引入nanoid库 3.使用nanoid __EOF__ 本文作者: lshifu 本文链接: https://www.cnblogs.com/lshifu/p/16124387.html 关于博主: 评论和私信会在第一时间回复。或者直接私信...