js相关

WuYiLong原创小于 1 分钟jsjs

js 自动生成随机四位数

const key = Math.random().toString(36).substr(2, 4);
解析: toString(36): 格式为36位的编码

js 对象健值对的问题

const key = Math.random().toString(36).substr(2, 4);
if (isDefault) {
        result.address = { ...result.address, default: key, [key]: data };
      } else {
        result.address = { ...result.address, [key]: data };
      }
}
解析: 对象的健要用变量的值要使用中括号

js之splice(),slice()

splice 会改变原来数组
slice 不会改变原来数组

js 去掉双引号

canteens.canteenConfig.replace(/\"/g, '')
上次编辑于:
贡献者: wuyilong