javascript - RefreshControll 数据重复每次都在 React native 中拉动以刷新 ScrollView

标签 javascript react-native uirefreshcontrol

描述
我在 React Native 中使用 RequestController 实现了一个拉取请求,每次我拉取以刷新相同的数据时,都会一遍又一遍地在平面列表中添加。我不是在平面列表中而是在包裹了 FlatListScrollView 上实现了拉取请求。

Action

import React, { Component } from 'react';
import { View, StyleSheet, Text, Button, Modal, Dimensions, ScrollView, TextInput, TouchableOpacity, StatusBar, Image, Platform, TouchableNativeFeedback,FlatList, ImageBackground, RefreshControl } from 'react-native';
import axios from 'axios';
class HomeScreen extends Component{
    state = {
        refreshing: false,
    }
    componentDidMount(){
        this.searchApi();
    }
    searchApi = async() => {
        const response = await axios.get('http://73udkYid.ngrok.io/api/v1/products',{
                headers: {
                    "x-auth-token":"eyJfaWQiOiI1ZdfjzZmM4YjIwYjBjZDQyMmJkNzUiLCJpYXQiOjE2MD"
                }
            }
        );
        this.setState({results: [...this.state.results, response.data]});
    }
    _onRefresh = () => {
        this.setState({refreshing: true});
        this.searchApi().then(() => {
          this.setState({refreshing: false});
        });
    }
    render(){
        let finalGames = [];
            this.state.results.forEach(obj => {
                Object.keys(obj).forEach(key => {
                finalGames.push(obj[key]);
            });
        });
        return (
        <ScrollView style={{flex: 1,backgroundColor: 'white',}}
                refreshControl = {
                    <RefreshControl 
                        refreshing = { this.state.refreshing }
                        onRefresh={this._onRefresh}
                    />
                }
            >  
       
        <FlatList 
            data = { finalGames }
            keyExtractor = {(item, index) => index.toString()}
            renderItem = { ({item: itemData}) => {
                if(itemData.empty == true){
                    return <View style = {[styles.item,styles.itemInvisible]}/>
                }
                return (
                    <View style = {{ flex: 1, margin: 4}}>
                    <View style = {styles.item}> 
                    <TouchableOpacity 
                        onPress = {() => {
                            this.setState({ viewController: this.state.viewController++ })
                            this.props.navigation.navigate(
                                "ProductDetail", {
                                itemDataDetail: itemData,
                                businessname:this.props.navigation.state.params.businessname,
                                viewController: this.state.viewController,
                             })
                         }}>
                    <View>
                        <ImageBackground 
                            source={{ uri: itemData.photo }}
                            style={{ width:'100%',aspectRatio: 1, borderRadius: 15, borderWidth:1, borderColor:"#FAFAFA", overflow: 'hidden'}}>
                        </ImageBackground>
                        <View style = {{ margin: 5}}>
                        <Text style = {{color: '#2E2E2E', fontWeight:"bold"}} numberOfLines={1}>{itemData.item}</Text>
                        <Text style = {{color: '#2E2E2E', fontSize: 12, fontWeight:"normal", alignSelf: 'flex-start'}} numberOfLines={1}>Available now | Sold out</Text>
                        <Text style = {{color: 'white', fontSize: 18, fontWeight:"bold", backgroundColor:"#DE1F38", alignSelf: 'flex-start', paddingHorizontal: 10,paddingVertical:2,borderRadius: 8,overflow: 'hidden', marginTop: 5}} numberOfLines={1}>${itemData.price}</Text>
                    </View>
                    </View>
                    </TouchableOpacity>
                    </View>
                    </View>
            </ScrollView>
          );
    }}/> 
}

输出
每次触发新的拉取刷新时都会复制数据

最佳答案

我假设您的 api 调用返回了整个产品列表

此行将 api-response-data 连接到组件状态中已有的产品列表

this.setState({results: [...this.state.results, response.data]});

试试这个...

this.setState({ results: response.data });

关于javascript - RefreshControll 数据重复每次都在 React native 中拉动以刷新 ScrollView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64692820/

相关文章:

ios - Pulltorefresh 只工作一次而不是多次

ios - 下拉刷新不适用于空的 TableView

javascript - 是否可以跳过 D3 强制布局中的初始转换?

javascript - execCommand justifycenter

react-native - 如何在 react native 中声明模型类并通过使用 react 导航在第二个屏幕中传递整个模型类

ios - CFBundleIdentifier”,不存在

ios - UICollectionView 底部的 UIRefreshControl(加载更多数据)

javascript - 打乱 HTML 列表元素的顺序

javascript - 使用 react redux 编辑表值

javascript - 在组件中设置viewpager的页面