Node-uuid提供了一个优秀的包来生成uuid
https://github.com/broofa/node-uuid
// Generate a v4 (random) id
uuid.v4(); // -> '110ec58a-a0f2-4ac4-8393-c866d813b8d1'
但是,它没有提供在base64或字母数字字符串中对其进行编码的方法。
有一种简单的方法吗?
答案 0 :(得分:2)
安装;
https://github.com/RGBboy/urlsafe-base64
然后;
var uuid = require('node-uuid');
var base64 = require('urlsafe-base64');
base64.encode(Buffer(uuid.v4()));