1. 问题描述
uniapp + uview点击重置按钮,重置不生效
this.$refs.form.resetFields();
文章来源:https://uudwc.com/A/9LD2L
2. 解决
不生效原因未知,但我们可以模拟重置。
先将表单中的绑定的数据置空,然后把校验结果置空就可以了文章来源地址https://uudwc.com/A/9LD2L
reset() {
// this.$refs.form.resetFields();
this.form.name = '';
this.form.email = '';
this.form.password = '';
this.form.confirmPassword = '';
this.form.phone = '';
this.form.code = '';
this.$refs.form.clearValidate(); //清空校验结果
}