我会创建一个新方法(比如updateIsFormValidated
),并将其绑定到focusout
表单的本机事件:
<el-form :model="ruleForm2" @focusout.native="updateIsFormValidated" ...>
每当表单中的任何输入失去焦点时,都会触发此方法。它将尝试检查表单组件中的每个字段是否已成功验证,如果任何表单项的验证状态仍处于未决状态,则每 100 毫秒触发一次:
updateIsFormValidated() {
let fields = this.$refs.ruleForm2.fields;
if (fields.find((f) => f.validateState === 'validating')) {
setTimeout(() => { this.updateIsFormValidated() }, 100);
} else {
this.isFormValidated = fields.reduce((acc, f) => {
let valid = (f.isRequired && f.validateState === 'success');
let notErroring = (!f.isRequired && f.validateState !== 'error');
return acc && (valid || notErroring);
}, true);
}
}
这是一个工作小提琴。