我想将无限滚动与FlatList一起使用,我是本机新手,所以我不知道如何实现它。
我的代码:
export default class Posts extends Component {
constructor(props) {
super(props);
this.state = {
isLoading: true,};}
componentDidMount() {
return fetch(ConfigApp.URL+'json/data_posts.php')
.then((response) => response.json())
.then((responseJson) => {
this.setState({
isLoading: false,
dataPosts: responseJson
}, function() {
});
})
render() {
return (
<FlatList
data={ this.state.dataPosts }
renderItem={({item}) =>
<Image source={{ uri: ConfigApp.URL+'images/'+item.post_image }}/>
<Text>{item.post_title}</Text>
}
keyExtractor={(item, index) => index}
/>
);}}