微信小程序生成随机数 极光IM random_str 作为签名加 salt 使用

微信小程序生成字符串随机数 ,长度的话可以自定义 

最近在集成极光要求 random_str : 20-36 长度的随机字符串, 作为签名加 salt 使用

于是写了一个方法

下面是代码

  //生成随机数
  createNonceStr: function () {
    var str = "",
      range = 20,//min
      arr = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'];

    // 随机产生
    if (true) {
      range = Math.round(Math.random() * (36 - 20)) + 20;
    }
    for (var i = 0; i < range; i++) {
      var pos = Math.round(Math.random() * (arr.length - 1));
      str += arr[pos];
    }
    return str;
  }

打印

   var num=this.createNonceStr();
    console.log(num);

输出:

HO27DqJty6h74eA6gfWH6jTF

?

 

 

你可能感兴趣的:(微信小程序)