9

这个函数在javascript中的等价物是什么:

http://php.net/manual/en/function.uniqid.php

基本上我需要生成一个看起来像的随机 ID:a4245f54345并以字母字符开头(所以我可以将它用作 CSS id)

4

8 回答 8

23

我一直在用这个...

我完全按照 PHP 的方式使用它。两者都返回相同的结果。

function uniqid(prefix = "", random = false) {
    const sec = Date.now() * 1000 + Math.random() * 1000;
    const id = sec.toString(16).replace(/\./g, "").padEnd(14, "0");
    return `${prefix}${id}${random ? `.${Math.trunc(Math.random() * 100000000)}`:""}`;
};
于 2018-02-03T02:49:07.803 回答
10

试试这个(在 php 中工作)。

$prefix = chr(rand(97,121));  
$uniqid =  $prefix.uniqid(); // $uniqid = uniqid($prefix);

试试这个 JavaScript::

var n = Math.floor(Math.random() * 11);
var k = Math.floor(Math.random() * 1000000);
var m = String.fromCharCode(n) + k;
于 2011-02-02T09:03:50.937 回答
5

这里的所有答案(除了 phpjs)都不会生成唯一的 ID,因为它是基于随机的。随机不是唯一的!

一个简单的解决方案:

window.unique_id_counter = 0 ;
var uniqid = function(){
    var id ;
    while(true){
        window.unique_id_counter++ ;
        id = 'uids_myproject_' + window.unique_id_counter ;
        if(!document.getElementById(id)){
            /*you can remove the loop and getElementById check if you 
              are sure that noone use your prefix and ids with this 
              prefix are only generated with this function.*/
            return id ;
        }
    }
}

如果需要,添加动态前缀很容易。只需更改unique_id_counter为存储每个前缀的计数器的数组即可。

于 2015-05-13T12:56:22.670 回答
2
<html>
<head>
<script type="text/javascript">
function generateSerial(len) {
    var chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz";
    var string_length = 10;
    var randomstring = '';

    for (var x=0;x<string_length;x++) {

        var letterOrNumber = Math.floor(Math.random() * 2);
        if (letterOrNumber == 0) {
            var newNum = Math.floor(Math.random() * 9);
            randomstring += newNum;
        } else {
            var rnum = Math.floor(Math.random() * chars.length);
            randomstring += chars.substring(rnum,rnum+1);
        }

    }
    alert(randomstring);
}
generateSerial(8);
</script>
</head>
<body>

</body>
</html>

这有点令人费解,但我敢肯定你明白了要点!
示例:http: //jsfiddle.net/Ng4tB/

于 2011-02-02T09:55:28.817 回答
2

真正的问题是,您是否需要 UUID 符合 RFC 4122?你的问题似乎暗示你不这样做,所以创建一个简单地基于 Math.random() 的函数来生成这样的 ID 并不难。另外,它将比 phpJS 实现快得多。

于 2011-02-02T09:00:15.620 回答
1
function uniqId(prefix) {
    if (window.performance) {
        var s = performance.timing.navigationStart;
        var n = performance.now();
        var base = Math.floor((s + Math.floor(n))/1000);
    } else {
        var n = new Date().getTime();
        var base = Math.floor(n/1000);
    }   
    var ext = Math.floor(n%1000*1000);
    var now = ("00000000"+base.toString(16)).slice(-8)+("000000"+ext.toString(16)).slice(-5);
    if (now <= window.my_las_uid) {
        now = (parseInt(window.my_las_uid?window.my_las_uid:now, 16)+1).toString(16);
    }
    window.my_las_uid = now;
    return (prefix?prefix:'')+now;
}

它是根据与 PHP 的 uniqId()“相同”的原则生成的——特别是以微秒为单位的编码时间。

于 2018-12-28T10:20:01.773 回答
1

Underscore.js 有一个uniqueid()方法
https://underscorejs.org/#uniqueId

_.uniqueId([prefix])
为需要的客户端模型或 DOM 元素生成一个全局唯一的 id。如果前缀被传递,id 将被附加到它上面。

_.uniqueId('contact_');  
=> 'contact_104'
于 2019-04-04T18:06:21.947 回答
0

发现这个:

https://github.com/makeable/uuid-v4.js/blob/master/uuid-v4.js

并对此稍作修改:

function uniqid(length){
  var dec2hex = [];
  for (var i=0; i<=15; i++) {
    dec2hex[i] = i.toString(16);
  }

  var uuid = '';
  for (var i=1; i<=36; i++) {
    if (i===9 || i===14 || i===19 || i===24) {
      uuid += '-';
    } else if (i===15) {
      uuid += 4;
    } else if (i===20) {
      uuid += dec2hex[(Math.random()*4|0 + 8)];
    } else {
      uuid += dec2hex[(Math.random()*16|0)];
    }
  }

  if(length) uuid = uuid.substring(0,length);
  return uuid;
}

效果很好。

于 2019-07-05T16:14:25.613 回答