源碼:git倉庫 歡迎star & fork ~~前端
注:源碼與如下例子不徹底一致,源碼將會持續補充檢驗規則,歡迎關注,提issue
git
作過校驗需求的小夥伴們都知道,校驗實際上是個麻煩事。github
規則多,須要校驗的字段多,都給咱們前端帶來巨大的工做量。bash
一個不當心,代碼裏就出現了很多if else
等不可維護的代碼。工具
所以,我以爲一個團隊或者是一個項目,須要一個校驗工具,簡化咱們的工做。ui
首先,參考一下 Joi。只看這一小段代碼:this
Joi.string().alphanum().min(3).max(30).required()
url
我但願個人校驗工具Coi也是鏈式調用,鏈式調用能夠極大的簡化代碼。spa
校驗呢,其實主要就3個入參:須要校驗的數據,提示的錯誤信息,校驗規則。code
哎 直接把代碼貼出來吧,反正就一百行,一目瞭然:
export default class Coi {
constructor(prop) {
this.input = prop
this.errorMessage = '經過校驗' // 錯誤信息
this.pass = true // 校驗是否經過
}
// 數據輸入
data(input) {
if (!this.pass) return this
this.input = input
return this
}
// 必填,不能爲空
isRequired(message) {
if (!this.pass) return this
if (
/^\s*$/g.test(this.input) ||
this.input === null ||
this.input === undefined
) {
this.errorMessage = message
this.pass = false
}
return this
}
// 最小長度
minLength(length, message) {
if (!this.pass) return this
if (this.input.length < length) {
this.errorMessage = message
this.pass = false
}
return this
}
// 最大長度
maxLength(length, message) {
if (!this.pass) return this
if (this.input.length > length) {
this.errorMessage = message
this.pass = false
}
return this
}
// 須要的格式 number: 數字, letter: 字母, chinese: 中文
requireFormat(formatArray, message) {
if (!this.pass) return this
let formatMap = {
number: 0,
letter: 0,
chinese: 0
}
Object.keys(formatMap).forEach(key => {
if (formatArray.includes(key)) formatMap[key] = 1
})
let formatReg = new RegExp(
`^[${formatMap.number ? '0-9' : ''}${
formatMap.letter ? 'a-zA-Z' : ''
}${formatMap.chinese ? '\u4e00-\u9fa5' : ''}]*$`
)
if (!formatReg.test(this.input)) {
this.errorMessage = message
this.pass = false
}
return this
}
// 郵箱校驗
isEmail(message) {
if (!this.pass) return this
const emailReg = /^[a-z0-9]+([._\\-]*[a-z0-9])*@([a-z0-9]+[-a-z0-9]*[a-z0-9]+.){1,63}[a-z0-9]+$/
if (!emailReg.test(this.input)) {
this.errorMessage = message
this.pass = false
}
return this
}
// ulr校驗
isURL(message) {
if (!this.pass) return this
const urlReg = new RegExp(
'^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$',
'i'
)
if (!urlReg.test(this.input)) {
this.errorMessage = message
this.pass = false
}
return this
}
// 自定義正則校驗
requireRegexp(reg, message) {
if (!this.pass) return this
if (!reg.test(this.input)) {
this.errorMessage = message
this.pass = false
}
return this
}
}
複製代碼
使用姿式以下:
import Coi from 'js-coi'
const validCoi = new Coi()
validCoi
.data('1234')
.isRequired('id不能爲空')
.minLength(3, 'id不能少於3位')
.maxLength(5, 'id不能多於5位')
.data('1234@qq.')
.isRequired('郵箱不能爲空')
.isEmail('郵箱格式不正確')
.data('http:dwd')
.isRequired('url不能爲空')
.isURL('url格式不正確')
if (!validCoi.pass) {
this.$message.error(validCoi.errorMessage)
return
}
複製代碼
固然你只校驗一個字段的話也能夠這麼使用:
import Coi from 'js-coi'
const idCoi = new Coi('1234')
idCoi
.isRequired('id不能爲空')
.minLength(3, 'id不能少於3位')
.maxLength(5, 'id不能多於5位')
.isEmail('id郵箱格式不正確')
.isURL('id格式不正確')
.requireFormat(['number', 'letter', 'chinese'], 'id格式不正確')
.requireRegexp(/012345/, 'id格式不正確')
if (!idCoi.pass) {
this.$message.error(idCoi.errorMessage)
return
}
複製代碼