【发布时间】:2018-05-01 06:52:07
【问题描述】:
我试图在 FlatList 的 onEndReached 上调用一个函数,但它不起作用。
我最后打电话给this.state.pageNo,它没有更新。我想稍后在无限滚动中使用此逻辑,但现在无法使其正常工作。
import React, { Component } from "react";
import {
View,
Text,
StyleSheet,
Button,
TouchableOpacity,
FlatList,
Alert
} from "react-native";
class InfiniteScrollRedux extends Component {
constructor(props) {
super(props);
this.state = {
loading: false,
pageNo: 1,
data: [
{ id: 1, name: "Name01" },
{ id: 2, name: "Name02" },
{ id: 3, name: "Name03" },
{ id: 4, name: "Name04" },
{ id: 5, name: "Name05" },
{ id: 6, name: "Name06" }
]
};
}
myFunction = () => {
this.setState({ pageNo: this.state.pageNo++ });
};
render() {
return (
<View>
<FlatList
data={this.state.data}
renderItem={({ item }) => (
<View style={mystyle.mainCard}>
<Text style={mystyle.titleText}> {item.id} </Text>
<View style={{ marginTop: 200 }} />
<Text style={mystyle.nameText}> {item.name} </Text>
</View>
)}
keyExtractor={item => item.id}
onEndReached={this.myFunction}
onEndThreshold={0}
/>
<Text style={{ margin: 20, padding: 20, fontSize: 20 }}>
{this.state.pageNo}
</Text>
</View>
);
}
}
const mystyle = StyleSheet.create({
mainCard: {
backgroundColor: "#2F4F4F",
marginBottom: 1,
padding: 5
},
titleText: {
fontSize: 20,
color: "#F0FFFF"
},
nameText: {
fontSize: 14,
color: "#F0FFFF"
}
});
export default InfiniteScrollRedux;
【问题讨论】:
-
我复制了你的代码并运行它,它运行良好,你的代码没有问题记住
onEndReached只为一组数据调用了一次 -
@Ali ..
onEndReached called only once for set of data.. 谢谢。 -
我在这里找到了答案,我最初尝试了 github cmets 中给出的所有解决方案都没有奏效,但最后检查了这个对我有用的答案。希望它也适用于其他人。 stackoverflow.com/questions/48740770/…
标签: reactjs react-native react-native-flatlist