JavaScript實現生成GUID(全局統一標識符)

/*
 * 功能:生成一個GUID碼,其中GUID以14個如下的日期時間及18個以上的16進制隨機數組成,GUID存在必定的重複機率,但重複機率極低,理論上重複機率爲每10ms有1/(16^18),即16的18次方分之1,重複機率低至可忽略不計
 * 免責聲明:此代碼爲做者學習專用,如在使用者在使用過程當中因代碼問題形成的損失,與做者沒有任何關係
 * 日期:2014年9月4日
 * 做者:wyc
 */
 
  
function GUID() {
  this.date = new Date();
 
  /* 判斷是否初始化過,若是初始化過如下代碼,則如下代碼將再也不執行,實際中只執行一次 */
  if (typeof this.newGUID != 'function') {
     
    /* 生成GUID碼 */
    GUID.prototype.newGUID = function() {
      this.date = new Date();
      var guidStr = '';
        sexadecimalDate = this.hexadecimal(this.getGUIDDate(), 16);
        sexadecimalTime = this.hexadecimal(this.getGUIDTime(), 16);
      for (var i = 0; i < 9; i++) {
        guidStr += Math.floor(Math.random()*16).toString(16);
      }
      guidStr += sexadecimalDate;
      guidStr += sexadecimalTime;
      while(guidStr.length < 32) {
        guidStr += Math.floor(Math.random()*16).toString(16);
      }
      return this.formatGUID(guidStr);
    }
 
    /*
     * 功能:獲取當前日期的GUID格式,即8位數的日期:19700101
     * 返回值:返回GUID日期格式的字條串
     */
    GUID.prototype.getGUIDDate = function() {
      return this.date.getFullYear() + this.addZero(this.date.getMonth() + 1) + this.addZero(this.date.getDay());
    }
 
    /*
     * 功能:獲取當前時間的GUID格式,即8位數的時間,包括毫秒,毫秒爲2位數:12300933
     * 返回值:返回GUID日期格式的字條串
     */
    GUID.prototype.getGUIDTime = function() {
      return this.addZero(this.date.getHours()) + this.addZero(this.date.getMinutes()) + this.addZero(this.date.getSeconds()) + this.addZero( parseInt(this.date.getMilliseconds() / 10 ));
    }
 
    /*
    * 功能: 爲一位數的正整數前面添加0,若是是能夠轉成非NaN數字的字符串也能夠實現
     * 參數: 參數表示準備再前面添加0的數字或能夠轉換成數字的字符串
     * 返回值: 若是符合條件,返回添加0後的字條串類型,不然返回自身的字符串
     */
    GUID.prototype.addZero = function(num) {
      if (Number(num).toString() != 'NaN' && num >= 0 && num < 10) {
        return '0' + Math.floor(num);
      } else {
        return num.toString();
      }
    }
 
    /* 
     * 功能:將y進制的數值,轉換爲x進制的數值
     * 參數:第1個參數表示欲轉換的數值;第2個參數表示欲轉換的進制;第3個參數可選,表示當前的進制數,如不寫則爲10
     * 返回值:返回轉換後的字符串
     */
    GUID.prototype.hexadecimal = function(num, x, y) {
      if (y != undefined) {
        return parseInt(num.toString(), y).toString(x);
      } else {
        return parseInt(num.toString()).toString(x);
      }
    }
 
    /*
     * 功能:格式化32位的字符串爲GUID模式的字符串
     * 參數:第1個參數表示32位的字符串
     * 返回值:標準GUID格式的字符串
     */
    GUID.prototype.formatGUID = function(guidStr) {
      var str1 = guidStr.slice(0, 8) + '-',
        str2 = guidStr.slice(8, 12) + '-',
        str3 = guidStr.slice(12, 16) + '-',
        str4 = guidStr.slice(16, 20) + '-',
        str5 = guidStr.slice(20);
      return str1 + str2 + str3 + str4 + str5;
    }
  }
}

  

只須要將其保存在一個JS文件中並引用便可。javascript

而後咱們只須要java

  var guid = new GUID();
  alert(guid.newGUID());

  

便可獲取GUID碼。數組

 

實現原理很簡單,這裏只是採用了系統時間與18個以上的十六進制隨機數組成,並用系統時間轉換爲十六進制,這樣雖然仍是有可能重複,可是重複的機率極低,可忽略不計。dom

轉載自http://www.jb51.net/article/54801.htm學習

相關文章
相關標籤/搜索