单单指望onEndReachedThreshold
没用啊~😡
onEndReached={()=>{
// 等待页面布局完成以后,在让加载更多
if (this.isCanLoadMore){
this.loadMore();
this.isCanLoadMore = false // 加载更多时,不让再次的加载更多
}
}}
onContentSizeChange={()=>{
this.isCanLoadMore = true // flatview内部组件布局完成以后会调用这个方法
}}
onEndReachedThreshold={0.01}
网友评论