清除element表单校验提示
时间: 2023-07-06 15:43:30 浏览: 311
element-ui和vue表单(对话框)验证提示语(残留)清除操作
5星 · 资源好评率100%
如果你想要清除整个 Element 表单的校验提示,可以通过以下两种方式实现:
1. 通过表单的 `clearValidate` 方法清除表单的所有校验提示。
```js
this.$refs.formName.clearValidate()
```
其中,`formName` 为表单的 `ref`。
2. 遍历表单的所有表单项,通过表单项的 `clearValidate` 方法清除各个表单项的校验提示。
```js
for (const field in this.$refs.formName.fields) {
this.$refs.formName.fields[field].clearValidate()
}
```
其中,`formName` 为表单的 `ref`,`fields` 为表单的所有表单项,`clearValidate` 方法用于清除表单项的校验提示。
需要注意的是,以上两种方法都只是清除了表单的校验提示,而没有清除表单项的校验规则。如果需要清除表单项的校验规则,请参考我上一条回答。
阅读全文