iviewui表单验证新手教程

news/2024/12/28 6:11:05/

1、表单验证介绍

下面来讲解iviewui表单验证的实现,下面上示例代码:

<template><Form ref="formInline" :model="formInline" :rules="ruleInline" inline><FormItem prop="user"><!--prop属性不能少--><Input type="text" v-model="formInline.user" placeholder="Username"><Icon type="ios-person-outline" slot="prepend"></Icon></Input><--formInline.user关联的变量值--></FormItem><FormItem prop="password"><Input type="password" v-model="formInline.password" placeholder="Password"><Icon type="ios-lock-outline" slot="prepend"></Icon></Input></FormItem><FormItem><Button type="primary" @click="handleSubmit('formInline')">Signin</Button></FormItem></Form>
</template>
<script>export default {data () {return {formInline: {user: '',password: ''},ruleInline: {user: [{ required: true, message: 'Please fill in the user name', trigger: 'blur' }],password: [{ required: true, message: 'Please fill in the password.', trigger: 'blur' },{ type: 'string', min: 6, message: 'The password length cannot be less than 6 bits', trigger: 'blur' }]}}},methods: {handleSubmit(name) {this.$refs[name].validate((valid) => {if (valid) {this.$Message.success('Success!');} else {this.$Message.error('Fail!');}})}}}
</script>

错误演示效果如下:

表单项的props

属性说明类型默认值
prop对应表单域 model 里的字段String-
label标签文本String-
label-width表单域标签的的宽度Number-
label-for指定原生的 label 标签的 for 属性,配合控件的 element-id 属性,可以点击 label 时聚焦控件。String-
required是否必填,如不设置,则会根据校验规则自动生成Boolean-
rules表单验证规则Object | Array-
error表单域验证错误信息, 设置该值会使表单验证状态变为error,并显示该错误信息String-
show-message是否显示校验错误信息Booleantrue

 表单的props

属性说明类型默认值
model表单数据对象Object-
rules表单验证规则,具体配置查看  async-validatorObject-
inline是否开启行内表单模式Booleanfalse
label-position表单域标签的位置,可选值为 leftrighttopStringright
label-width表单域标签的宽度,所有的 FormItem 都会继承 Form 组件的 label-width 的值Number-
show-message是否显示校验错误信息Booleantrue
autocomplete原生的 autocomplete 属性,可选值为 off 或 onStringoff
hide-required-mark 4.0.0是否隐藏所有表单项的必选标记Booleanfalse
label-colon 4.0.0是否自动在 label 名称后添加冒号Booleanfalse
disabled 4.0.0是否禁用该表单内的所有组件(适用于具有 disabled 属性的表单类组件)Booleanfalse

表单的events 

事件名说明返回值
on-validate 4.0.0任一表单项被校验后触发,返回表单项 prop、校验状态、错误消息prop, status, error

表单的methods 

方法名说明参数
validate对整个表单进行校验,参数为检验完的回调,会返回一个 Boolean 表示成功与失败,支持 Promisecallback
validateField对部分表单字段进行校验的方法,参数1为需校验的 prop,参数2为检验完回调,返回错误信息callback
resetFields对整个表单进行重置,将所有字段值重置为空并移除校验结果

表单项的slot 

名称说明
内容
labellabel 内容

如下代码部分的“ruleInline”就是表单的验证规则,规则属性有哪些:

2、规则属性介绍

2.1 Type = 类型

指示type要使用的验证器。可识别的类型值为:

  • string:必须是string类型,默认类型
  • number:必须是number类型
  • boolean:必须是boolean类型
  • method:必须是function类型
  • regexp:必须是的实例RegExp或创建新的时不会产生异常的字符串RegExp
  • integer:必须是number整数类型
  • float:必须是number浮点数类型
  • array:必须是由数组Array.isArray
  • object:必须是object且不是Array.isArray
  • enum:值必须存在于enum中
  • date:值必须为Date类型
  • url:必须是url类型
  • hex:必须是hex类型
  • email:必须是email类型
  • any:可以是任意类型

2.2 Required

规则属性required表示该字段必须存在于被验证的源对象上

2.3 Pattern

规则pattern属性指示值必须匹配才能通过验证的正则表达式

2.4 Range

min使用和属性定义范围max。对于stringarray类型,比较是针对进行的length,对于number类型,数字不得小于min或大于max

2.5 Length

要验证字段的精确长度,请指定len属性。对于stringarray类型,对属性执行比较length,对于number类型,此属性表示与完全匹配number,即,它可能仅严格等于len

如果该len属性与minmax范围属性结合使用,len则优先。

2.6 Enumerable

要从可能值列表中验证一个值,请使用enum带有enum列出该字段有效值的属性的类型,例如:

const descriptor = {role: { type: 'enum', enum: ['admin', 'user', 'guest'] },
};

2.7 Whitespace

通常将仅包含空格的必填字段视为错误。要对仅由空格组成的字符串添加额外测试,请whitespace向值为 的规则添加属性true。规则必须是类型string

您可能希望清理用户输入而不是测试空格,请参阅转换以获取允许您去除空格的示例。

2.8 Deep Rules

如果您需要验证深层对象属性,则可以通过将嵌套规则分配给规则的属性来对object或类型的验证规则进行验证。arrayfields

const descriptor = {address: {type: 'object',required: true,fields: {street: { type: 'string', required: true },city: { type: 'string', required: true },zip: { type: 'string', required: true, len: 8, message: 'invalid zip' },},},name: { type: 'string', required: true },
};
const validator = new Schema(descriptor);
validator.validate({ address: {} }, (errors, fields) => {// errors for address.street, address.city, address.zip
});

规则示例:

{ name: { type: 'string', required: true, message: 'Name is required' } }

其它规则示例:

export default {data() {return {title: '管理平台',address: 'title.png',sendAuthCode: true, /* 布尔值,通过v-show控制显示‘获取按钮'还是‘倒计时' */auth_time: '120', /* 倒计时 计数器 */firstForm: {},thirdForm: {userName: '',account: '',password: '',email: '',telephone: '',fax: '',postCode: '',phone: '',phoneValidation: '',captchaCode: '',},captchaUrl: `${global.CTX}/captcha`,rules: {userName: [{ required: true, message: '请输入管理员姓名', trigger: 'blur' },{ min: 1, max: 20, message: '管理员姓名在20字以内', trigger: 'blur' },],account: [{ required: true, message: '请输入管理员账号', trigger: 'blur' },{ min: 1, max: 50, message: '管理员账号在50字以内', trigger: 'blur' },{ pattern: /^\S+$/, message: '账号不允许有空格', trigger: 'blur' },],password: [{ required: true, message: '请输入长度为10-20位包含数字、字母、特殊字符的密码', trigger: 'blur' },{ pattern: /^(?=.*\d)(?=.*[a-zA-Z])(?=.*[\W_]).{10,20}$/, message: '请输入长度为10-20位包含数字、字母、特殊字符的密码', trigger: 'blur' },],postCode: [{ max: 10, message: '邮编长度10位以内', trigger: 'blur' },],fax: [{ max: 50, message: '传真长度50字以内', trigger: 'blur' },],email: [{ required: true, message: '请输入邮箱', trigger: 'blur' },{ max: 50, message: '邮箱在50字以内', trigger: 'blur' },{ pattern: /^[a-zA-Z0-9_.-]+@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*\.[a-zA-Z0-9]{2,6}$/, message: '请检查邮箱格式是否正确', trigger: 'blur' },],
//最后的校验规则,不需要自己写校验规则也可以写成 { type: 'email', message: '请检查邮箱格式是否正确', trigger: 'blur' },/*type的枚举值有string: Must be of type string. This is the default type.number: Must be of type number.boolean: Must be of type boolean.method: Must be of type function.regexp: Must be an instance of RegExp or a string that does not generate an exception when creating a new RegExp.integer: Must be of type number and an integer.float: Must be of type number and a floating point number.array: Must be an array as determined by Array.isArray.object: Must be of type object and not Array.isArray.enum: Value must exist in the enum.date: Value must be valid as determined by Dateurl: Must be of type url.hex: Must be of type hex.email: Must be of type email.https://github.com/yiminghe/async-validator#type https://www.cnblogs.com/chaoxiZ/p/10136780.html
*/telephone: [{ max: 50, message: '电话长度在50位以内', trigger: 'blur' },],phone: [{ required: true, message: '请输入手机号码', trigger: 'blur' },{ pattern: /^((1[3,5,8][0-9])|(14[5,7])|(17[0,5,6,7,8])|(19[7]))\d{8}$/, message: '请检查手机号是否正确', trigger: 'blur' },],phoneValidation: [{ required: true, message: '请输入手机验证码', trigger: 'blur' },],captchaCode: [{ required: true, message: '请输入图片验证码', trigger: 'blur' },],},};},components: {titleBar,navBar,},methods: {// 是否显示密码showPwd() {const input = document.getElementById('pwd');if (input.type === 'password') {input.type = 'text';} else if (input.type === 'text') {input.type = 'password';}},// 刷新图片验证码refresh() {this.captchaUrl = `${global.CTX}/captcha?tm=${Math.random()}`;},// 倒计时getAuthCode() {if (this.authTimeTimer) {clearTimeout(this.authTimeTimer);}this.authTimeTimer = setTimeout(() => {this.auth_time -= 1;if (this.auth_time < 0) {this.sendAuthCode = true;clearTimeout(this.authTimeTimer);} else {this.getAuthCode();}}, 1000);},// 发送短信sendMsg(phoneNum) {this.$refs.thirdForm.validateField('phone', (phoneError) => {console.log(`${phoneError}***************************`);if (!phoneError) {this.auth_time = 120;this.sendAuthCode = false;api.sendMsg({params: {params: {phone: phoneNum,reason: 'developerReg',},},}).then(() => {this.getAuthCode();this.$confirm('验证码已发送至登记手机号上,请查收。', {confirmButtonText: '确定',center: true,});}).catch((err) => {this.sendAuthCode = true;this.$message({message: err.response.message,type: 'error',});});}});},// 验证登入账号是否存在checkDevpUserAccount(account) {api.checkDevpUserAccount({params: {params: {account,},},}).then((data) => {if (data.state === 0) {this.checkCaptcha();}}).catch((err) => {this.$message({message: err.response.message,type: 'error',});});},// 图片验证码验证是否正确checkCaptcha() {api.getCaptcha({params: {params: {captchaCode: this.thirdForm.captchaCode,},},}).then(() => {this.checkSmsValidCode();}).catch((err) => {this.$message({message: err.tip,type: 'error',});this.refresh();});},// 验证短信验证码checkSmsValidCode() {api.verifySmsValidCode({params: {params: {phone: this.thirdForm.phone,reason: 'developerReg',validCode: this.thirdForm.phoneValidation,},},}).then((data) => {if (data.state === 0) {this.submit();}}).catch((err) => {this.$message({message: err.tip,type: 'error',});});},// 上一步previousStep() {sessionStorage.setItem('needSecondStepCache', '1');this.$router.push({ name: 'DeveloperSecond' });},// 下一步nextStep(thirdForm) {this.$refs[thirdForm].validate((valid) => {if (valid) {this.checkDevpUserAccount(this.thirdForm.account);}});},// 向后台提交数据submit() {if (this.firstForm.devpType === '1') {this.thirdForm.userName = this.firstForm.devpNameself;}this.secondForm.cmmiLevel = (this.secondForm.cmmiLevel === '无' ? '' : this.secondForm.cmmiLevel);this.secondForm.isoLevel = (this.secondForm.isoLevel === '无' ? '' : this.secondForm.isoLevel);const passwordTemp = md5(this.thirdForm.password);api.registeredDeveloper({params: {data: {devpType: this.firstForm.devpType,devpName: this.firstForm.devpName,devpCode: this.firstForm.devpCode,logo: this.firstForm.logo,companyAddress: this.firstForm.companyAddress,companyDescrible: this.firstForm.companyDescrible,companyBusiness: this.firstForm.companyBusiness,identifyPositiveId: this.firstForm.identifyPositiveId,identifyReverseId: this.firstForm.identifyReverseId,employeeCode: this.firstForm.employeeCode,remarks: this.firstForm.remarks,cmmiLevel: this.secondForm.cmmiLevel,isoLevel: this.secondForm.isoLevel,qualificationId: this.secondForm.qualificationId,userName: this.thirdForm.userName,account: this.thirdForm.account,password: passwordTemp,email: this.thirdForm.email,telephone: this.thirdForm.telephone,fax: this.thirdForm.fax,postCode: this.thirdForm.postCode,phone: this.thirdForm.phone,},},}).then(() => {this.$router.push({name: 'ReturnSuccessMsg',params: {},});}).catch((err) => {this.$message({message: err.response.message,type: 'error',});});},},mounted() {this.firstForm = JSON.parse(sessionStorage.getItem('firstForm')) || {};this.secondForm = JSON.parse(sessionStorage.getItem('secondForm')) || {};},
};
</script>


http://www.ppmy.cn/news/1558713.html

相关文章

9. 大数据集群(PySpark)+Hive+MySQL+PyEcharts+Flask:信用贷款风险分析与预测

文章目录 一、大数据集群介绍 1. PySpark简介2. Hive简介3. PyEcharts4. Flask 二、信用贷款数据集介绍 1. 用户基本信息表2.用户登录信息表3. 用户更新信息表 三、信用贷款风险分析 1. 加载数据到Hive仓库2. 基本信息表masterinfo的训练集和测试集合并3.用户信息完善情况与逾…

OSI 七层模型 | TCP/IP 四层模型

注&#xff1a;本文为 “OSI 七层模型 | TCP/IP 四层模型” 相关文章合辑。 未整理去重。 OSI 参考模型&#xff08;七层模型&#xff09; BeretSEC 于 2020-04-02 15:54:37 发布 OSI 的概念 七层模型&#xff0c;亦称 OSI&#xff08;Open System Interconnection&#xf…

王佩丰24节Excel学习笔记——第十九讲:Indirect函数

【以 Excel2010 系列学习&#xff0c;用 Office LTSC 专业增强版 2021 实践】 【本章技巧】 如果indirect引用出错&#xff0c;首先检查一下引用位置的双引号有没有出错&#xff0c;再检查引用值的位置是否出错&#xff0c;如果是双引号出错&#xff0c;可以使用英文状态下输入…

Kotlin 语言基础语法及标准库

基础 Kotlin 变量和数据类型 不可变变量 val关键字 类似java中final关键字&#xff0c;必须有初始值&#xff0c;且不更改变量的值Error:(13, 5) Kotlin: Val cannot be reassigned可变变量var 关键字 var myName "china"类型推断 // 没有指定变量类型&#xf…

Solon v3.0.5 发布!(Spring 可以退休了吗?)

Solon 框架&#xff01; 新一代&#xff0c;面向全场景的 Java 应用开发框架。从零开始构建&#xff08;非 java-ee 架构&#xff09;&#xff0c;有灵活的接口规范与开放生态。 追求&#xff1a; 更快、更小、更简单提倡&#xff1a; 克制、高效、开放、生态 有什么特点&am…

unknown variable ‘default-authentication-plugin=mysql_native_password‘

docker 部署指定 mysql:8 下载的最新8.4版本的mysql 启动时出现该错误 解决办法 由于mysql8.4废弃该参数_default-authentication-pluginmysql_native_password_&#xff0c;改为使用这个参数 --mysql-native-passwordON services:mysql:image: mysql:8command: --mysql-nati…

深入了解MACsec:它如何为你的网络带来革命性变化?

在数字化时代&#xff0c;网络安全已成为企业和个人不可忽视的重要议题。随着网络技术的飞速发展&#xff0c;各种安全威胁层出不穷&#xff0c;如何确保数据传输的安全性和完整性成为了网络领域的重大挑战。在这样的背景下&#xff0c;MACsec&#xff08;Media Access Control…

前端开发 -- 自动回复机器人【附完整源码】

一&#xff1a;效果展示 本项目实现了一个简单的网页聊天界面&#xff0c;用户可以在输入框中输入消息&#xff0c;并点击发送按钮或按下回车键来发送消息。机器人会根据用户发送的消息内容&#xff0c;通过关键字匹配来生成自动回复。 二&#xff1a;源代码分享 <!DOCTYP…