我尝试将EndReacehdthreshold从0设置为1,但仍然是垃圾邮件触发者,
我已经尝试过
onEndReached={()=>{this.onEndReached()}
它只会触发一次
onEndReached(){
this.GetData()
}
render(){
return(
<View>
<ScrollView ...>
<FlatList ....
....
onEndReached={ this.onEndReached() }
onEndReachedThreshold={0}
/>
</ScrollView>
</View>
)}
答案 0 :(得分:0)
如果您打算将其与EndReached
一起使用,则在Flatlist
中找不到高度。
请勿使用Flatlist
中的ScrollView
。