vuejs点击重置报"TypeError: Cannot read properties of undefin

2024年09月25日 建站教程

问题描述:修改和新增弹窗用的是同一个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();
}

这样就不会报错了!

本文链接:http://so.lmcjl.com/news/13904/

展开阅读全文
相关内容