代码如下,我没搞懂为什么这么写在其他机型上可以,在mate30上就不行,在mate30上拉到底部就没反应了,代码上有什么地方可以改了解决这个问题吗,在这里提前谢谢各位哥哥姐姐们的帮助了,小弟感激不尽!
/**
* 页面上拉触底事件的处理函数
*/
pullUpLoad = (event) => {
// return (<ActivityIndicator style={{height: 50}} animating={this.state.isLoadingMore} color="black" />);
const contentHeight = event.nativeEvent.contentSize.height.toFixed(1);
const scrollViewHeight = event.nativeEvent.layoutMeasurement.height;
const scrollOffset = event.nativeEvent.contentOffset.y;
const isEndReached = (scrollOffset + scrollViewHeight).toFixed(1) >= contentHeight; // 是否滑动到底部
const isContentFillPage = contentHeight >= scrollViewHeight; // 内容高度是否大于列表高度
if (isContentFillPage && isEndReached && this.scrollEnabled) {
this.scrollEnabled = false;
if (this.params.pageCount > this.params.page) {
this.params.page++;
this.myLoadData(true, this.params.page);
} else {
this.scrollEnabled = true;
this.showInfo('没有更多数据');
this.hideLoading(); //
//提示到底
}
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…