1. 问题描述
uniapp + uview点击重置按钮,重置不生效
this.$refs.form.resetFields();
文章来源:https://www.toymoban.com/news/detail-559152.html
2. 解决
不生效原因未知,但我们可以模拟重置。
先将表单中的绑定的数据置空,然后把校验结果置空就可以了文章来源地址https://www.toymoban.com/news/detail-559152.html
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(); //清空校验结果
}
到了这里,关于uniapp uview微信小程序重置表单resetFields不生效的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!