Node.js crypto.randomUUID( )函数
crypto.randomUUID()是加密模块中 Crypto 类的内置应用程序编程接口,用于生成随机 RFC 4122 版本 4 UUID。
句法:
const crypto.randomUUID([options])
参数:该函数以disableEntropyCache为参数
返回值:此函数返回一个随机的 RFC 4122 第 4 版 UUID。
示例 1:
index.js
index.js
使用以下命令运行 index.js 文件。
node index.js
输出:
RFC 4122 Version 4 UUID : 88368f2a-d5db-47d8-a05f-534fab0a0045
示例 2:
index.js
使用以下命令运行 index.js 文件。
node index.js
输出:
e2d3286f-2d8f-471a-bacb-1e5d28d8727e
参考:https://nodejs.org/dist/latest-v15.x/docs/api/crypto.html#crypto_crypto_randomuuid_options