老师有个问题
来源:7-7 FlatList的高级应用&上拉加载更多功能实现-2【这个技能很实用】
qq_我的心向大海_ckuGNU
2019-06-11
我也添加 onEndReached={() => {
console.log(’—onEndReached----’);
setTimeout(() => {
if (this.canLoadMore) {//fix 滚动时两次调用onEndReached https://github.com/facebook/react-native/issues/14015
this.loadData(true);
this.canLoadMore = false;
}
}, 100);
}}
onEndReachedThreshold={0.5}
onMomentumScrollBegin={() => {
this.canLoadMore = true; //fix 初始化时页调用onEndReached的问题
console.log(’—onMomentumScrollBegin-----’)
}}
可是下拉到最后一页的时候就会报错,然后就一直转圈圈
写回答
1回答
-
问题解决了吗,报什么错呢,贴出来我帮你看看
032019-06-12
相似问题