RN-FlatList onEndReached 刷新次数
2019-01-18 本文已影响28人
精神病患者link常
单单指望onEndReachedThreshold
没用啊~😡
onEndReached={()=>{
// 等待页面布局完成以后,在让加载更多
if (this.isCanLoadMore){
this.loadMore();
this.isCanLoadMore = false // 加载更多时,不让再次的加载更多
}
}}
onContentSizeChange={()=>{
this.isCanLoadMore = true // flatview内部组件布局完成以后会调用这个方法
}}
onEndReachedThreshold={0.01}