码迷,mamicode.com
首页 > 其他好文 > 详细

前端生成uuid

时间:2021-04-24 11:48:35      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:http   ref   target   rgba   tar   uid   style   mod   npm   

github下载地址: https://github.com/uuidjs/uuid

1. Install

npm install uuid

2. Create a UUID (ES6 module syntax)

import { v4 as uuidv4 } from ‘uuid‘;
uuidv4(); // ? ‘9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d‘

... or using CommonJS syntax:

const { v4: uuidv4 } = require(‘uuid‘);
uuidv4(); // ? ‘1b9d6bcd-bbfd-4b2d-9b5d-ab8dfbbd4bed‘

 

前端生成uuid

标签:http   ref   target   rgba   tar   uid   style   mod   npm   

原文地址:https://www.cnblogs.com/mmzuo-798/p/14693054.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!