我有一个FlatList组件,我想使用onEndReachedThreshold属性在到达列表末尾时获取更多数据。
问题是它无法按我期望的方式工作,我将其设置为onEndReachedThreshold = {0},但是当我到达列表末尾时,它什么也没做。
handleLoadMore = () => {
console.log("handleLoadMOre");
};
<FlatList
data={this.state.data}
onEndReached={this.handleLoadMore}
onEndReachedThreshold={0.1}
ListFooterComponent={this.renderFooter}
contentContainerStyle={{ flex: 1 }}
keyExtractor={(item, index) => index.toString()}
renderItem.....
/>