planAuditDetail.vue:984 Uncaught (in promise) TypeError: Cannot read properties of null (reading 'ysxxsz')
时间: 2023-11-08 13:59:18 浏览: 151
Vue报错:Uncaught TypeError: Cannot assign to read only property’exports‘ of object’#Object‘的解决方法
根据提供的引用内容,错误信息Uncaught (in promise) TypeError: Cannot read properties of null (reading 'ysxxsz') 是由于在planAuditDetail.vue文件的第984行尝试读取一个名为ysxxsz的属性,但该属性的值为null,所以无法读取其属性。这种错误通常发生在尝试访问不存在或未定义的属性时。
为了解决这个错误,你可以在访问属性之前添加对属性是否为null的判断。例如,你可以使用条件语句,如if语句,来检查ysxxsz属性是否为null,然后再进行相应的处理,避免出现TypeError。
阅读全文