guid 函数 生成随机id

guid 函数 生成随机id

S4() {
      return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);
    },
    guid() {
      return (
        this.S4() +
        this.S4() +
        "-" +
        this.S4() +
        "-" +
        this.S4() +
        "-" +
        this.S4() +
        "-" +
        this.S4() +
        this.S4() +
        this.S4()
      );
    }
posted @ 2024-04-09 10:20  彭成刚  阅读(19)  评论(0编辑  收藏  举报