pdfh5报错Uncaught (in promise) TypeError: Cannot read properties of null (reading 'subarray')
时间: 2023-08-19 11:14:14 浏览: 122
Vue报错:Uncaught TypeError: Cannot assign to read only property’exports‘ of object’#Object‘的解决方法
根据你提供的引用内容,你遇到的问题是"pdfh5报错Uncaught (in promise) TypeError: Cannot read properties of null (reading 'subarray')"。根据你的描述,你对代码进行了修改以解决报错。根据引用\[1\]、\[2\]和\[3\],你对代码进行了多次修改,主要是针对`err.data.password1`的判断和处理。最终,你将代码修改为了以下形式:
```javascript
else if (err.data.password1) {
this.$message({
message: err.data.password1 ? err.data.password1\[0\] : "",
type: "error",
});
}
```
这段代码的作用是,如果`err.data.password1`存在,则显示`err.data.password1\[0\]`的错误信息,否则不显示任何信息。这样的修改可能是为了避免在`err.data.password1`为null或undefined时出现报错。这种报错通常是因为尝试读取一个null或undefined的属性而导致的。通过对`err.data.password1`进行判断,你成功解决了报错。希望这个解答对你有帮助!
#### 引用[.reference_title]
- *1* *2* *3* [解决报错Uncaught (in promise) TypeError: Cannot read properties of undefined (reading ‘0‘)](https://blog.csdn.net/qq_52372698/article/details/124545191)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^koosearch_v1,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文