react 报红错误汇总
Posted fengwenya
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react 报红错误汇总相关的知识,希望对你有一定的参考价值。
react 报红错误汇总
一、Uncaught TypeError: Cannot read property ‘value‘ of undefined
未知类型错:无法读取未定义的属性“value”
我的源码:
console.log(item.controlAttributeObj.placeholder.value)
错误原因:
controlAttributeObj的初始值为{},所以第一次获取 placeholder 为 undefined , undefined 是没有属性的,所以此时获取不到 value 属性
解决报错:
console.log((item.controlAttributeObj.placeholder || {}).value)
以上是关于react 报红错误汇总的主要内容,如果未能解决你的问题,请参考以下文章
我的Android进阶之旅Android Studio的NDK项目可以运行,但是C++代码全部报红的错误
汇总错误:node_modules/react/index.js 未导出“默认”
已解决在react+ts中 atnd 用 upload 组件报错Failed to execute ‘readAsArrayBuffer,param 1 is notof type Blob(代码片段