Form表单父子组件校验,嵌套table校验

最近一直在做后台管理项目,自然少不了表单校验。说说我在表单校验上遇到的一些难点。

  1. 在父组件中校验子组件的信息;
  2. form表单嵌套表格的校验信息;
  3. 表单金额的校验规则(产品要求输入最多8位整数,4位小数,最高位不能位0);

首先我们来看父组件如何去校验子组件中的信息

同一组件内的校验,都好办,难的是跨组件校验。

我们来看有这样一个场景:有一个编辑和查看的模块,默认展示查看模块,通过点击父组件的‘编辑’按钮显示编辑模块,编辑后,点击父组件的‘保存’按钮显示查看模块。所以这里点保存时需要去校验子组件,校验成功才能调保存接口。

这里我们主要看父组件,和edit组件,read组件只是展示信息的,没有需要讲的地方。

<!-- 父组件 -->
<template>
  <div class="father">
    <div class="father-btn">
      <el-button v-if="!isEdit" @click="isEdit=true" type="primary">编辑</el-button>
      <el-button v-if="isEdit" @click="isEdit=false" disabled>取消</el-button>
      <el-button v-if="isEdit" type="primary" @click="saveEdit">保存</el-button>
    </div>
    <div class="father-content">
      <edit v-if="isEdit" ref="edit" />
      <read v-else />
    </div>
  </div>
</template>
<!-- 编辑子组件 -->
<template>
  <el-form :model="numberValidateForm" ref="numberValidateForm" label-width="100px" class="demo-ruleForm">
    <el-form-item
      label="年龄"
      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>
</template>
// 父组件
import { Component, Vue } from 'vue-property-decorator';
import Read './read.vue';
import Edit './edit.vue';

@Component({
  components: {
    Edit,
    Read,
  },
})
export default class Father extends Vue {
  private isEdit: boolean = false;
  private saveEdit() {
    const edit = this.$refs.edit as any;
    edit.numberValidateForm.validate((valid) => {
      if (valid) {
        // 校验通过拿到子组件的值,通过调用子组件的getData方法
        const editData = edit.getData();
        console.log(editData);
        // 调用保存接口
        // ...
        this.isEdit = false;
      } else {
        // 校验失败
        return false;
      }
    });
  }
}
// edit.vue
import { Component, Vue } from 'vue-property-decorator';
@Component
export default class Edit extends Vue {
  private numberValidateForm: any = {
    age: '',
  };
  private getData() {
    return numberValidateForm;
  }
}

Form表单中嵌套表格的这种校验又怎么做呢

<template>
<el-form :model="formData" :rules="rules">
  <el-table
    :data="formData.tableList"
    :show-header="false"
    style="width: 100%">
    <el-table-column>
      <template slot-scope="scope">
        <el-form-item
          :prop="'tableList.' + scope.$index + '.dateTime'"
          :rules='rules.dateTime'>
          <el-date-picker
            v-model="scope.row.dateTime"
            size="mini"
            type="date"
            value-format="timestamp"
            placeholder="请选择日期">
          </el-date-picker>
        </el-form-item>
      </template>
    </el-table-column>
    <el-table-column>
      <template slot-scope="scope">
        <el-form-item
          :prop="'tableList.' + scope.$index + '.num'"
          :rules='rules.num'>
          <el-input
            type="text"
            size="mini"
            v-model="scope.row.num">
          </el-input>
        </el-form-item>
      </template>
    </el-table-column>
  </el-table>
</el-form>
</template>
import { Component, Vue } from 'vue-property-decorator';
@Component
export default class Edit extends Vue {
  private formData: any = {
    tableList: [
      {
        dateTime: '',
        num: '',
      },
      {
        dateTime: '',
        num: '',
      },
    ],
  };
  get rules() {
    const checkDateTime = (rule: any, value: any, callback: any) => {
      if (value == null || value === '') {
        callback(new Error('请选择日期'));
      } else {
        callback();
      }
    };
    const checkNum = (rule: any, value: any, callback: any) => {
      if (value == null || value === '') {
        callback(new Error('请输入'));
      } else if (!new RegExp(/(^[1-9]([0-9]{1,7})$|^[1-9]$)/).test(value)) {
        callback(new Error('请输入1-8位数字'));
      } else {
        callback();
      }
    };
    const obj = {
      dateTime: [
        { validator: checkDateTime, trigger: ['change', 'blur'] },
      ],
      num: [
        { validator: checkNum, trigger: 'blur' },
      ],
    };
    return obj;
  }
}

嵌套table的校验有两个注意点:

  1. 注意 prop 的绑定方式同一般的不同;
  2. el-form-item 上除了绑定 prop 还要绑定 rules;

金额和纯数字的校验

<template>
<el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px">
  <el-form-item label="数量" prop="amount">
    <el-input
      type="text"
      :maxlength="8"
      onkeypress="return event.keyCode>=48&&event.keyCode<=57"
      @keyup.native="checkAmount(ruleForm.amount)"
      v-model="ruleForm.amount">
    </el-input>
  </el-form-item>
  <el-form-item label="金额" prop="price">
    <el-input
      type="text"
      @keyup.native="checkPrice(ruleForm.price)"
      v-model="ruleForm.price">
    </el-input>
  </el-form-item>
</el-form>
</template>
import { Component, Vue } from 'vue-property-decorator';
const reg = /(^[1-9]([0-9]{1,7})$|^[0-9]$)/;
const priceReg = /(^[1-9]([0-9]{0,7})$|^[0-9]$|^[0-9](\.[0-9]{0,4})$|^[1-9]([0-9]{0,7})\.[0-9]([0-9]{0,3})$|^[1-9]([0-9]{0,7})\.$)/;

@Component
export default class EllipsisComponent extends Vue {
  private ruleForm: any = {
    amount: '',
    price: '',
  };
  get rules() {
    const checkAmount = (rule: any, value: any, callback: any) => {
      if (value == null || value === '') {
        callback(new Error('请输入'));
      } else if (!reg.test(value)) {
        callback(new Error('请输入1-8位数字'));
      } else {
        callback();
      }
    };
    const checkPrice = (rule: any, value: any, callback: any) => {
      if (value == null || value === '') {
        callback(new Error('请输入'));
      } else if (!priceReg.test(value)) {
        callback(new Error('最多输入8位整数,4位小数'));
      } else {
        callback();
      }
    };
    const obj = {
      amount: [
        { validator: checkAmount, trigger: 'blur' },
      ],
      price: [
        { validator: checkPrice, trigger: 'blur' },
      ],
    };
    return obj;
  }
  private checkAmount(value: any) {
    if (value != null && value.length > 0) {
      if (!reg.test(value)) {
        if (/[^\d.]+/.test(value)) { // 匹配中间是否插入了字母,等其他字符
          this.ruleForm.amount = value.replace(/[^\d.]+/, '');
          return;
        }
        if (/^([0-9]\d{8,}(\.\d*)*)$/.test(value)) { // 匹配是否超过8位
          this.ruleForm.amount = value.substring(0, 8);
          return;
        }
        if (/^[0]+/.test(value)) { // 最高位是否为0
          this.ruleForm.amount = value.replace(/^[0]+/, '');
          return;
        }
      }
    }
  }
  private checkPrice(value: any) {
    if (!priceReg.test(value)) {
      if (/^(\.)/.test(value)) { // 匹配第一个字符是否为 .
        this.ruleForm.price = value.substring(value.lastIndexOf('.') + 1, value.length);
        return;
      }
      if (/[^\d.]+/.test(value)) { // 匹配中间是否插入了字母,等其他字符
        this.ruleForm.price = value.replace(/[^\d.]+/, '');
        return;
      }
      if (/([0-9]\d*)(\.\d*){2,}/.test(value)) { // 匹配是否有多个 . --恶意输入
        this.ruleForm.price = '';
        return;
      }
      if (/^([1-9]\d{8}(\.\d*))$/.test(value)) { // 匹配小数点前是否为7位
        this.ruleForm.price =  value.replace(value.charAt(value.lastIndexOf('.') - 1), '');
        return;
      }
      if (/^([0-9]\d{9,}(\.\d*)*)$/.test(value)) { // 匹配小数点前是否超过8位-恶意输入
        this.ruleForm.price = '';
        return;
      }
      if (/^([0-9]\d{0,7}(\.\d{5,}))$/.test(value)) { // 小数点后是否超过了3位-恶意输入
        this.ruleForm.price = value.substring(0, value.lastIndexOf('.') + 5);
        return;
      }
      if (/^0\d*(\.\d{0,4})?$/.test(value)) { // 匹配第一位是否是0开始
        this.ruleForm.price = value.replace(/^([0][0]*)/, '');
        return;
      }
      this.ruleForm.price = value.substring(0, (value.length - 1));
    }
  }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,864评论 6 494
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,175评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,401评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,170评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,276评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,364评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,401评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,179评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,604评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,902评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,070评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,751评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,380评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,077评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,312评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,924评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,957评论 2 351

推荐阅读更多精彩内容