Cannot read property map of undefined

原代码:

Cannot read property map of undefined_第1张图片

报错信息:

TypeError: Cannot read property 'map' of undefined

ListUi.render

src/Demo1/listUI.jsx:13

  10 | {/* ref={input => this.input = input} */}
  11 | 
  12 | 
> 13 | 
    | ^ 14 | { 15 | this.props.list.map((item,index)=>{ 16 | return (

View compiled

 

 

原因:调用map的对象是 undefined,初始化第一次渲染的时候异步数据返回之前list是undefined。

 

修改之后

Cannot read property map of undefined_第2张图片

你可能感兴趣的:(react-报错)