美文网首页
正则-邮箱、手机号、电话

正则-邮箱、手机号、电话

作者: 撑船的摆渡人 | 来源:发表于2019-06-04 18:03 被阅读0次

    邮箱 /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/

    合法url /^(https?|ftp):\/\/([a-zA-Z0-9.-]+(:[a-zA-Z0-9.&%$-]+)*@)*((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?)(\.(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9]?[0-9])){3}|([a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(:[0-9]+)*(\/($|[a-zA-Z0-9.,?'\\+&%$#=~_-]+))*$/

    外部链接验证 /^(https?:|mailto:|tel:)/

    密码验证 6-18位数字和密码的组合 /^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{6,18}$/

    手机号 /^[1][3,5,6,7,8,9][0-9]{9}$/

    电话 /^(\(\d{3,4}\)|\d{3,4}-)?\d{7,8}(-\d{1,4})?$/

    小于十五位的数字 /^\d{0,15}$/

    16或18位数字 /^((\d{16})|(\d{18}))$/

    18位数字和字母 /^[A-Za-z0-9]{18}$/

    整数最多18位小数最多两位 /^(([0-9]{0,18})|([0-9]{0,18}\.\d{1,2}))$/g

    金额0.00 ~ 999999999.99 /^(0|[1-9][\d]*)\.{0,1}\d{0,2}$/

    /**
     * 验证上传文件是否符合规则校验
     * @param {File} file 上传文件
     * @param {Object} obj 文件格式要求的配置规则(非必输项)
     * @param {Array} obj.fileType 文件类型
     * @param {String} obj.unit 文件大小单位
     * @param {Number} obj.min 文件最小值
     * @param {Number} obj.max 文件最大值
     * @param {Number} obj.length 文件名长度最小值
     * @param {Number} obj.lengthError 文件长度最大值
     * @param {String} obj.error 错误提示语文案
     */
    export function uploadChecks(file, obj) {
      let isType = false
      let isOk = false
      let isOverLength = false
    
      // 是否传递第二个参数
      if (obj === undefined) {
        obj = {}
      }
      // 赋默认值
      var option = {
        fileType: obj.fileType || ['txt', 'doc', 'docx', 'pdf', 'jpg', 'jpeg', 'gif', 'png', 'xlsx', 'xls', 'rar', 'zip', '7z'],
        unit: obj.unit || 'KB',
        min: obj.min || 0,
        max: obj.max || 20480,
        length: obj.length || 0,
        error: obj.error || '请上传小于20MB的txt/doc/docx/pdf/jpg/jpeg/gif/png/xlsx/xls/rar/zip/7z文件',
        lengthError: obj.lengthError || '您上传的文件名过长'
      }
      // 类型对比
      const fileType = file.name.substring(file.name.lastIndexOf('.') + 1)
      for (var i = 0; i < option.fileType.length; i++) {
        if (fileType === option.fileType[i]) {
          isType = true
        }
        if (!isType && i === (option.fileType.length - 1)) {
          Message.error('对不起,暂时不支持这种文件格式')
          return false
        }
      }
    
      // 大小限制
      let size = 0
      if (option.unit === 'KB') {
        size = file.size / 1024
      } else if (option.unit === 'MB') {
        size = file.size / 1024 / 1024
      }
    
      if (option.max > 0 && option.min > 0) {
        const isLt = size < option.max
        const isGt = size > option.min
        if (!(isLt && isGt)) {
          isOk = false
        }
      } else if (option.max > 0 && option.min === 0) {
        const isLt = size < option.max
        if (!isLt) {
          isOk = false
        } else {
          isOk = true
        }
      }
      // 文件名长度限制
      if (option.length > 0) {
        const fileNameLength = file.name.length
        if (parseInt(fileNameLength, 10) > parseInt(option.length, 10)) {
          isOverLength = true
        }
      }
    
      if (!isOk) {
        Message.error(option.error)
      } else if (isOverLength) {
        Message.error(option.lengthError)
      }
      return isOk && !isOverLength
    }
    

    相关文章

      网友评论

          本文标题:正则-邮箱、手机号、电话

          本文链接:https://www.haomeiwen.com/subject/wzmcxctx.html