Skip to content

JS 生成随机数及 Element UI 表单校验

Published: at 10:34 PMSuggest Changes

生成随机数

普通方法

// 生成随机数
Math.random().toString(36).substr(2);

Symbol

// 生成随机 id 不会重复
const id = Symbol();

大佐的方法,群里大佐提供的

const getUUID = (() => {
  // 0n n 代表 bigint
  let i = 0n;
  return () => {
    return (i++).toString(36);
  };
})();

const getUUID = (() => {
  let i = 123123123234234234234234n;
  return () => {
    return (i++).toString(36);
  };
})();



getUUID();

element ui 对指定字段进行校验

this.$refs[formName].validateField("email", (emailError) => {
  // 2 种情况:emailError ='请输入邮箱'或者 emailError =''(所以返回值为空时,验证通过。返回值非空时,验证失败)
  if (!emailError) {
    alert("邮箱验证通过!");
  } else {
    console.log("邮箱验证失败");
    return false;
  }
});

Previous Post
JS 正则表达式中的 /g 修饰符
Next Post
父元素设置 min-height 后,子元素 height: 100% 无效的解决方法