其他分享
首页 > 其他分享> > replaceAll is not a funtion

replaceAll is not a funtion

作者:互联网

在这里插入图片描述

function randomSessionId() {
  let ua = new Uint8Array(20);
  new DataView(ua.buffer).setUint32(0, Math.floor(+new Date() / 1000));
  let crypto = window.crypto || window.msCrypto;
  if (crypto) {
    crypto.getRandomValues(ua.subarray(4, 20));
  }
  return (
    "1." +
    transformUint8ArrayToBase64(ua)
      .replaceAll("+", "-")
      .replaceAll("/", "_")
  );
}

解决方法为:

function randomSessionId() {
  let ua = new Uint8Array(20);
  new DataView(ua.buffer).setUint32(0, Math.floor(+new Date() / 1000));
  let crypto = window.crypto || window.msCrypto;
  if (crypto) {
    crypto.getRandomValues(ua.subarray(4, 20));
  }
  return (
    "1." +
    transformUint8ArrayToBase64(ua)
      .replace(/\+/g, "-")
      .replace(/\//g, "_")
  );
}

标签:20,crypto,window,replaceAll,let,new,ua,funtion
来源: https://blog.csdn.net/Kiruthika/article/details/122693114