有时需要在前端生成UUID,可以在jsp中引用内容如下的文件UUID.js。
使用时直接用new生成即可
var uuidId = new UUID();
UUID.js
/*
*
* uuid.js - Version 0.3 JavaScript Class to create a UUID like identifier
*
* Copyright (C) 2006-2008, Erik Giberti (AF-Design), All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program; if not, write to the Free Software Foundation, Inc., 59 Temple
* Place, Suite 330, Boston, MA 02111-1307 USA
*
* The latest version of this file can be downloaded from
* http://www.af-design.com/resources/javascript_uuid.php
*
* HISTORY: 6/5/06 - Initial Release 5/22/08 - Updated code to run faster,
* removed randrange(min,max) in favor of a simpler rand(max) function. Reduced
* overhead by using getTime() method of date class (suggestion by James Hall).
* 9/5/08 - Fixed a bug with rand(max) and additional efficiencies pointed out
* by Robert Kieffer http://broofa.com/
*
* KNOWN ISSUES: - Still no way to get MAC address in JavaScript - Research into
* other versions of UUID show promising possibilities (more research needed) -
* Documentation needs improvement
*
*/
// On creation of a UUID object, set it's initial value
function UUID() {
this.id = this.createUUID();
}
// When asked what this Object is, lie and return it's value
UUID.prototype.valueOf = function() {
return this.id;
}
UUID.prototype.toString = function() {
return this.id;
}
//
// INSTANCE SPECIFIC METHODS
//
UUID.prototype.createUUID = function() {
//
// Loose interpretation of the specification DCE 1.1: Remote Procedure Call
// described at
// http://www.opengroup.org/onlinepubs/009629399/apdxa.htm#tagtcjh_37
// since JavaScript doesn't allow access to internal systems, the last 48
// bits
// of the node section is made up using a series of random numbers (6 octets
// long).
//
var dg = new Date(1582, 10, 15, 0, 0, 0, 0);
var dc = new Date();
var t = dc.getTime() - dg.getTime();
var tl = UUID.getIntegerBits(t, 0, 31);
var tm = UUID.getIntegerBits(t, 32, 47);
var thv = UUID.getIntegerBits(t, 48, 59) + '1'; // version 1, security version is 2
var csar = UUID.getIntegerBits(UUID.rand(4095), 0, 7);
var csl = UUID.getIntegerBits(UUID.rand(4095), 0, 7);
// since detection of anything about the machine/browser is far to buggy,
// include some more random numbers here
// if NIC or an IP can be obtained reliably, that should be put in
// here instead.
var n = UUID.getIntegerBits(UUID.rand(8191), 0, 7)
+ UUID.getIntegerBits(UUID.rand(8191), 8, 15)
+ UUID.getIntegerBits(UUID.rand(8191), 0, 7)
+ UUID.getIntegerBits(UUID.rand(8191), 8, 15)
+ UUID.getIntegerBits(UUID.rand(8191), 0, 15); // this last number is two octets long
return tl + tm + thv + csar + csl + n;
}
//
// GENERAL METHODS (Not instance specific)
//
// Pull out only certain bits from a very large integer, used to get the time
// code information for the first part of a UUID. Will return zero's if there
// aren't enough bits to shift where it needs to.
UUID.getIntegerBits = function(val, start, end) {
var base16 = UUID.returnBase(val, 16);
var quadArray = new Array();
var quadString = '';
var i = 0;
for (i = 0; i < base16.length; i++) {
quadArray.push(base16.substring(i, i + 1));
}
for (i = Math.floor(start / 4); i <= Math.floor(end / 4); i++) {
if (!quadArray[i] || quadArray[i] == '')
quadString += '0';
else
quadString += quadArray[i];
}
return quadString;
}
// Replaced from the original function to leverage the built in methods in
// JavaScript. Thanks to Robert Kieffer for pointing this one out
UUID.returnBase = function(number, base) {
return (number).toString(base).toUpperCase();
}
// pick a random number within a range of numbers
// int b rand(int a); where 0 <= b <= a
UUID.rand = function(max) {
return Math.floor(Math.random() * (max + 1));
}
// end of UUID class file
分享到:
相关推荐
### JavaScript生成UUID的三种方法详解 #### 一、前言 在软件开发中,经常会遇到需要为特定的数据或对象分配唯一标识符的情况。UUID(通用唯一标识符)就是一种常用的解决方案,它能够确保生成的ID在空间和时间上...
JavaScript生成UUID的核心在于随机数的生成与格式化处理。通过内置的`Math.random()`函数,可以生成介于0到1之间的伪随机数,再通过一系列转换,将其转化为符合UUID格式的字符串。在这个过程中,还需要遵循UUID的...
在JavaScript中,生成UUID的需求时常出现,例如在生成临时ID、数据库记录的主键或者进行唯一标识时。为了解决这个问题,开发者创建了专门的JS库来生成UUID。 这个压缩包文件"JavaScript的UUid"很可能包含了一个或多...
这个函数用最短的代码生成了非常有效的uuid,非常巧妙。短小精悍,一个字符都不多。Returns a random v4 UUID of the form xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx, where each x is replaced with a random ...
本文主要介绍了在JavaScript中如何仅用两行代码生成UUID的方法。首先,文章指出,虽然JavaScript的URL.createObjectURL方法可以生成一个唯一的URL来表示传递给它的对象,但这种方法的目的是为了创建可引用的URL对象...
在JavaScript中,生成UUID主要用于创建唯一的ID,这对于数据跟踪、对象标识和分布式系统尤其有用。 在给定的博客链接中,作者可能讨论了如何在JavaScript中生成和使用UUID。尽管没有具体的博客内容,但我们可以基于...
在JS中生成UUID可以用于创建唯一ID,避免在分布式系统或数据库中出现重复记录。 UUID有多种版本,如V1到V5,每种都有其特定的生成机制。在JS中生成UUID,通常我们会使用第三方库,如`uuid`库,这是一个广泛使用的...
JavaScript中,生成UUID可以借助第三方库如`uuid`,但原生JavaScript并不直接提供生成UUID的API。通常,开发者会使用一些模拟UUID生成的方法,比如生成一个足够大的随机数,然后将其转化为128位的二进制表示,再转换...
// 添加一个刷新链接,以便再次生成UUID echo "<a href='javascript:;' onclick='location.reload();'>刷新</a>"; ``` 这段代码中,`create_uuid()`函数首先通过`md5(uniqid(mt_rand(), true))`生成一个基于当前...
在JavaScript中,我们可以通过自定义函数来生成UUID。以下将详细讲解如何用JS生成UUID的方法实例。 首先,我们需要理解UUID的格式。标准的UUID是一个128位的数字,通常用16进制表示,形式为8-4-4-4-12的32个字符,...
Math.uuid.js是一个JavaScript库,专门用于生成UUID。本文将深入探讨UUID的概念、其重要性以及Math.uuid.js库的工作原理。 UUID是一个128位的数字,通常以16进制表示,形式为32个字符,如“550e8400-e29b-41d4-a716...
UUID.js, 用于JavaScript的符合RFC的UUID生成器 电子邮件名称UUID.js - 适用于JavaScript的兼容UUID生成器概要<!-- HTML5 -->[removed][removed]&
1. **JavaScript生成UUID的概念**: UUID是通用唯一识别码(Universally Unique Identifier)的缩写,它是一个128位的值,用于创建唯一标识符。在计算机系统中,UUID常用于生成具有唯一性的标识,如数据库记录、API...
在易语言中,UUID生成模块源码是用于在程序中生成UUID的关键组件,可以支持UUID的版本1、3、4、5。 版本1的UUID基于时间戳和MAC地址生成,保证了在一定时间范围内和特定硬件环境下的唯一性。但因为涉及MAC地址,...
node-uuid, 在JavaScript中,生成符合RFC的uuid uuid 简单。快速生成 RFC4122 uuid 。功能:支持版本 1,4和 5 uuid跨平台使用加密的强随机数 api ( 可用时)零相关性,小容量( 。但不是这个小的 )快速入门- CommonJS...
提到的GitHub项目`uuidjs/uuid`和`google/uuid`都是开源的JavaScript库,提供了对UUID生成的支持,特别是对版本1、3、4、5的实现。这些库可以方便地在JavaScript应用中生成和操作UUID。`@mole`可能是对某个开发者或...
全局唯一标识符(GUID,Globally Unique Identifier)也称作 UUID(Universally Unique IDentifier) 。 GUID是一种由算法生成的二进制长度为128位的数字标识符。GUID 的格式为“xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx...
4. 性能考虑:生成UUID的速度较快,但在高并发场景下仍需注意性能瓶颈,特别是v1 UUID涉及系统调用获取时间戳和MAC地址。 总结,`node-uuid`库为前端开发者提供了简单且可靠的UUID生成方案。无论是基于时间戳的v1...