vue 表单 验证 async-validator
生活随笔
收集整理的這篇文章主要介紹了
vue 表单 验证 async-validator
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1、使用插件async-validator
async-validator?地址:https://github.com/yiminghe/async-validator
2、示例(vue+element-ui)
<el-form :model="numberValidateForm" ref="numberValidateForm" label-width="100px" class="demo-ruleForm"><el-form-itemlabel="年齡"prop="age":rules="[{ required: true, message: '年齡不能為空'},{ type: 'number', message: '年齡必須為數字值'}]"><el-input type="age" v-model.number="numberValidateForm.age" autocomplete="off"></el-input></el-form-item><el-form-item><el-button type="primary" @click="submitForm('numberValidateForm')">提交</el-button><el-button @click="resetForm('numberValidateForm')">重置</el-button></el-form-item> </el-form> <script>export default {data() {return {numberValidateForm: {age: ''}};},methods: {submitForm(formName) {this.$refs[formName].validate((valid) => {if (valid) {alert('submit!');} else {console.log('error submit!!');return false;}});},resetForm(formName) {this.$refs[formName].resetFields();}}} </script>注意校驗書寫格式:
{ required: true, message: '年齡不能為空'}, { type: 'number', message: '年齡必須為數字值'}像校驗郵箱、數值類型類型時,多行配置校驗規則。
轉載于:https://www.cnblogs.com/mengfangui/p/9907783.html
總結
以上是生活随笔為你收集整理的vue 表单 验证 async-validator的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 微众银行怎么还信用卡?多久到账?
- 下一篇: 转载 vue的基础使用