当前位置: 首页 > 工具软件 > validator-js > 使用案例 >

validate.js

丌官翰采
2023-12-01

前端的validate.js

/**

 * Created by PanJiaChen on 16/11/18.

 */

/**

 * @param {string} path

 * @returns {Boolean}

 */

 export function isExternal(path) {

    return /^(https?:|mailto:|tel:)/.test(path)

  }

  /**

   * @param {string} str

   * @returns {Boolean}

   */

  export function validUsername(str) {

    const valid_map = ['admin', 'editor']

    return valid_map.indexOf(str.trim()) >= 0

  }

  /**

   * @param {string} url

   * @returns {Boolean}

   */

  export function validURL(url) {

    const reg = /^(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.,?'\\+&%$#=~_-]+))*$/

    return reg.test(url)

  }

  export function judgeRegionLevel(regionCode) {

    const provinceRex = /^[1-9]\d0000000000$/

    const cityRex = /^[1-9]\d((0[1-9])|([1-9]\d))00000000$/

    const countyRex = /^[1-9]\d((0[1-9])|([1-9]\d))((0[1-9])|([1-9]\d))000000$/

    const townRex = /^[1-9]\d((0[1-9])|([1-9]\d))((0[1-9])|([1-9]\d))((00[1-9])|(0[1-9]\d)|([1-9][1-9]\d))000$/

    const communityRex = /^[1-9]\d((0[1-9])|([1-9]\d))((0[1-9])|([1-9]\d))((00[1-9])|(0[1-9]\d)|([1-9][1-9]\d))((00[1-9])|(0[1-9]\d)|([1-9][1-9]\d))$/

    if (provinceRex.test(regionCode)) {

      return 1

    } else if (cityRex.test(regionCode)) {

      return 2

    } else if (countyRex.test(regionCode)) {

      return 3

    } else if (townRex.test(regionCode)) {

      return 4

    } else if (communityRex.test(regionCode)) {

      return 5

    } else {

      return -1

    }

  }

  /**

   * @param {string} str

   * @returns {Boolean}

   */

  export function validLowerCase(str) {

    const reg = /^[a-z]+$/

    return reg.test(str)

  }

  /**

   * 验证正整数

   * @param str

   * @returns {boolean}

   */

  export function validPositiveInteger(str) {

    const reg = /^[1-9]\d*$/

    return reg.test(str)

  }

  /**

   * 验证数字,带有小数的

   * @param str

   * @returns {boolean}

   */

  export function validDigit(str) {

    const reg = /(^[1-9]\d*(\.\d+)?$)|(^0(\.\d+)?$)/

    return reg.test(str)

  }

  /**

   * @param {string} str

   * @returns {Boolean}

   */

  export function validUpperCase(str) {

    const reg = /^[A-Z]+$/

    return reg.test(str)

  }

  /**

   * @param {string} str

   * @returns {Boolean}

   */

  export function validAlphabets(str) {

    const reg = /^[A-Za-z]+$/

    return reg.test(str)

  }

  /**

   * @param {string} email

   * @returns {Boolean}

   */

  export function validEmail(email) {

    const reg = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/

    return reg.test(email)

  }

  export function isvalidPhone(phone) {

    const reg = /^1[3|4|5|7|8][0-9]\d{8}$/

    return reg.test(phone)

  }

  export function isvalidFixPhone(phone) {

    const reg = /^(\(\d{3,4}\)|\d{3,4}-|\s)?\d{7,14}$/

    return reg.test(phone)

  }

  /**

   * @param {string} str

   * @returns {Boolean}

   */

  export function isString(str) {

    if (typeof str === 'string' || str instanceof String) {

      return true

    }

    return false

  }

  /**

   * @param {Array} arg

   * @returns {Boolean}

   */

  export function isArray(arg) {

    if (typeof Array.isArray === 'undefined') {

      return Object.prototype.toString.call(arg) === '[object Array]'

    }

    return Array.isArray(arg)

  }

  /**

   * 是否合法IP地址

   * @param rule

   * @param value

   * @param callback

   */

  export function validateIP(rule, value, callback) {

    if (value === '' || value === undefined || value == null) {

      callback()

    } else {

      const reg = /^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$/

      if ((!reg.test(value)) && value !== '') {

        callback(new Error('请输入正确的IP地址'))

      } else {

        callback()

      }

    }

  }

  /* 是否手机号码或者固话*/

  export function validatePhoneTwo(rule, value, callback) {

    const reg = /^((0\d{2,3}-\d{7,8})|(1[34578]\d{9}))$/

    if (value === '' || value === undefined || value == null) {

      callback()

    } else {

      if ((!reg.test(value)) && value !== '') {

        callback(new Error('请输入正确的电话号码或者固话号码'))

      } else {

        callback()

      }

    }

  }

  /* 是否固话*/

  export function validateTelephone(rule, value, callback) {

    const reg = /0\d{2}-\d{7,8}/

    if (value === '' || value === undefined || value == null) {

      callback()

    } else {

      if ((!reg.test(value)) && value !== '') {

        callback(new Error('请输入正确的固话(格式:区号+号码,如010-1234567)'))

      } else {

        callback()

      }

    }

  }

  /* 是否手机号码*/

  export function validatePhone(rule, value, callback) {

    const reg = /^[1][3,4,5,7,8][0-9]{9}$/

    if (value === '' || value === undefined || value == null) {

      callback()

    } else {

      if ((!reg.test(value)) && value !== '') {

        callback(new Error('请输入正确的电话号码'))

      } else {

        callback()

      }

    }

  }

  /* 是否身份证号码*/

  export function validateIdNo(value) {

    const reg = /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/

    return reg.test(value)

  }

  export function checkPassWord(password) { // 密码必须包含数字和字母

    var str = password

    if (str == null || str.length < 8) {

      return false

    }

    var reg = new RegExp(/^(?![^a-z]+$)(?!\D+$)/)

    // var reg2 = new RegExp(/^(?![^A-Z]+$)(?!\D+$)/)

    // if (reg2.test(str)) {

    if (reg.test(str)) { return true }

    // }

    return false

  }

  /* 是否行政区划编码--省级*/

  export function validateProvinceCode(value) {

    const reg = /^[1-9]\d0000$/

    return reg.test(value)

  }

  /* 是否行政区划编码--地市*/

  export function validateCityCode(value) {

    const reg = /^[1-9]\d((0[1-9])|([1-9]\d))00$/

    return reg.test(value)

  }

  /* 是否行政区划编码--区县*/

  export function validateAreaCode(value) {

    const reg = /^[1-9]\d((0[1-9])|([1-9]\d))((0[1-9])|([1-9]\d))$/

    return reg.test(value)

  }

 类似资料:

相关阅读

相关文章

相关问答