Cannot read property 'map' of undefined问题及解决方法

报错如下:

Cannot read property 'map' of undefined问题及解决方法_第1张图片

这个问题出在rows.map上,那么可以推测是调用map的对象undefined,不是map自己undefined,顺着rows可以看到很有可能是this.state.selectedRows出问题了,紧接着找到此处代码如下:

Cannot read property 'map' of undefined问题及解决方法_第2张图片

会发现this.state压根没有selectedRows,所以在this.state对象里面加上selectedRows,即可。

 

你可能感兴趣的:(Cannot read property 'map' of undefined问题及解决方法)