流检查React元素并给我一个错误

时间:2017-12-02 03:42:12

标签: reactjs react-native

我使用了neat array并在其上添加了一些道具: enter image description here

但是当我使用Flow检查我的代码时。我收到以下错误:

enter image description here 似乎SectionIist正在检查Flow提供的组件?

1 个答案:

答案 0 :(得分:0)

使用您的keyExtractor keyExtractor={(item, index) => your_title+index}。我为index目的添加了unique key。尝试如下,

<SectionList 
    keyExtractor={(item, index) => `${item.title}_${index}`}
/>