- 报错信息
Error in v-on handler: "TypeError: Cannot read properties of undefined (reading 'resetFields')"
v-on 处理程序中的错误:“TypeError:无法读取未定义的属性(读取‘resetFields’)”
- 分析问题
为什么获取不到到resetFields属性?
因为form表单没有渲染
为什么form表单没有渲染?
因为form挂载再el-dialog 标签上
所以form节点跟随dialog弹框渲染
所以清空表单的操作一定要再关闭弹框之前执行
// 取消回调
cancelCallBack () {
this.resetForm('nodeForm');
this.addEditPopupSwitch();
}
// 重置表单
resetForm (formName) {
this.$refs[formName].resetFields();
},
// 新增修改弹框切换
addEditPopupSwitch () {
this.dialogVisible = !this.dialogVisible;
},