vuejs点击重置报"TypeError: Cannot read properties of undefined (reading 'resetFields')"错误
问题描述:修改和新增弹窗用的是同一个el-dialog
,想点击“修改”后再点击“新增”利用resetFields
清空数据,但是问题来了,先点击“修改”再点击“新增”不会报错,如果先点击“新增”会报”TypeError: Cannot read properties of undefined (reading ‘resetFields’)”错误。
问题分析:利用typeof this.$refs.dialog
打印你会发现在执行“修改”的时候this.$refs.dialog
是有数据的,如果先执行“新增”它返回的数据是undefined
,因此会报错!
解决单独:在重置的时候先判断是否为undefined
if (typeof this.$refs.dialog !== "undefined") {
this.$refs.dialog.resetFields();
}
这样就不会报错了!
以上是编程学习网小编为您介绍的“vuejs点击重置报"TypeError: Cannot read properties of undefined (reading 'resetFields')"错误”的全面内容,想了解更多关于 vuejs 内容,请继续关注编程基础学习网。