当前位置:网站首页>uniapp的表单验证
uniapp的表单验证
2022-07-06 19:21:00 【这次我一定要赢】
回顾一下,平常我们在使用element-ui的时候是如何进行表单验证的
<template>
<div class="">
<el-form ref="form" :rules="rules" :model="form">
<el-form-item label="姓名" prop="name">
<el-input v-model="form.name"></el-input>
</el-form-item>
<el-form-item label="年龄" prop="age">
<el-input v-model="form.age"></el-input>
</el-form-item>
</el-form>
<el-button type="primary" @click="fn">保存</el-button>
</div>
</template>
<script>
export default {
data() {
return {
form:{
name:'',
age:''
},
rules:{
name: [{ required: true, message: '必填', trigger: 'blur' }],
age: [{ required: true, message: '必填', trigger: 'blur' }]
}
}
},
name: '',
methods: {
fn(){
this.$refs.form.validate((result)=>{
if (result) {
console.log('验证通过后的逻辑处理');
}
else{
console.log('验证失败后的逻辑处理');
}
})
}
}
}
</script>
<style scoped>
</style>
(1)在el-form上绑定的东西
1.ref获取表单调用viliadte方法做全局的验证
2.:rules 验证规则
3.:model 绑定关联的数据
(2)在el-form-item上绑定东西
1.label关联的是标题
2.prop绑定是关联的字段
(3)在el-input上绑定的东西
el-input,绑定双向绑定要关联的数据
uniapp的表单验证
1.uni-forms需要通过rules属性传入约定的校验规则
<!-- rules 内容详见下方完整示例 -->
<uni-forms ref="form" :rules="rules">
...
</uni-forms>
这个和element-ui是一样的
2.uni-forms
需要绑定model
属性,值为表单的key\value 组成的对象。
<!-- formData、rules 内容详见下方完整示例 -->
<uni-forms ref="form" :model="formData" :rules="rules">
...
</uni-forms>
3.uni-forms-item
需要设置 name
属性为当前字段名,字段为 String|Array
类型。
<!-- formData、rules 内容详见下方完整示例 -->
<uni-forms :modelValue="formData" :rules="rules">
<uni-forms-item label="姓名" name="name">
<uni-easyinput type="text" v-model="formData.name" placeholder="请输入姓名" />
</uni-forms-item>
<uni-forms-item required :name="['data','hobby']" label="兴趣爱好">
<uni-data-checkbox multiple v-model="formData.data.hobby" :localdata="hobby"/>
</uni-forms-item>
</uni-forms>
这里的name相当于element-ui里面的prop
4.规则验证
rules: {
// 对name字段进行必填验证
name: {
rules: [{
required: true,
errorMessage: '请输入姓名',
},
{
minLength: 3,
maxLength: 5,
errorMessage: '姓名长度在 {minLength} 到 {maxLength} 个字符',
}
]
},
// 对email字段进行必填验证
email: {
rules: [{
format: 'email',
errorMessage: '请输入正确的邮箱地址',
}]
}
}
这里可以看出来uni多加了一个rules。
其他可以见官网进行查看。
边栏推荐
- 一本揭秘字节万台节点ClickHouse背后技术实现的白皮书来了!
- Error in fasterxml tostringserializerbase
- C#/VB. Net to delete watermarks in word documents
- Code debugging core step memory
- Web3's need for law
- C语言练习题_1
- Google Earth Engine(GEE)——Landsat 全球土地调查 1975年数据集
- 【软件测试】最全面试问题和回答,全文背熟不拿下offer算我输
- CDB PDB user rights management
- ODBC database connection of MFC windows programming [147] (with source code)
猜你喜欢
NuScenes数据集关于Radar数据的统计
Digital scrolling increases effect
Go swagger use
Fundamentals of process management
What management points should be paid attention to when implementing MES management system
wireshark安装
数论 --- 快速幂、快速幂求逆元
Station B's June ranking list - feigua data up main growth ranking list (BiliBili platform) is released!
Redis入门完整教程:问题定位与优化
Remember the problem analysis of oom caused by a Jap query
随机推荐
What are the applications and benefits of MES management system
安全巡检的工作
Oracle中日期的使用方法实例
ERROR: Could not find a version that satisfies the requirement xxxxx (from versions: none)解决办法
从控制理论的角度谈数据分析
HAVE FUN | “飞船计划”活动最新进展
The annual salary of general test is 15W, and the annual salary of test and development is 30w+. What is the difference between the two?
Read fast RCNN in one article
Huitong programming introductory course - 2A breakthrough
换个姿势做运维!GOPS 2022 · 深圳站精彩内容抢先看!
Redis入门完整教程:问题定位与优化
unity webgl自适应网页尺寸
如何设计好接口测试用例?教你几个小技巧,轻松稿定
unity 自定义webgl打包模板
Hash table and full comments
unity中跟随鼠标浮动的面板,并可以自适应文字内容的大小
Examples of how to use dates in Oracle
Unity custom webgl packaging template
Kysl Haikang camera 8247 H9 ISAPI test
所谓的消费互联网仅仅只是做行业信息的撮合和对接,并不改变产业本身