反应本机平面列表项目不随状态变化



我有一个搜索栏,可以更新this.state.data,为我的平面列表提供信息。当我在搜索栏中输入类似tttt的东西时.....this.state.data更新为空数组....控制台.log您在下面看到console.log('Populating flatview with:' + this.state.data);显示阵列现已清空...但是,平面列表不会更改以反映这一点。 this.state.data肯定会更改为空数组,但平面列表不刷新。

有什么想法吗?提前致谢

  constructor(props) {
    super(props);
    this.state = {
      data: [],
    };
    this.arrayholder = [];
  }

this.state.data 和 this.arrayholder 在这里填充了对象.....

 <SearchBar
    placeholder="Type Here..."
    lightTheme
    round
    onChangeText={text => this.searchFilterFunction(text)}
    autoCorrect={false}
  />
  searchFilterFunction = (text) => {
    const newData = this.arrayholder.filter((item) => {
      const itemData = item.name.toUpperCase();
      const textData = text.toUpperCase();
      return itemData.indexOf(textData) > -1;
    });
    this.setState({ data: newData });
  };

renderFlatView = () => {
    console.log('Populating flatview with:' + this.state.data);
    return (
      <List containerStyle={{ borderTopWidth: 0, borderBottomWidth: 0 }}>
        <FlatList
          data={this.state.data}
          renderItem={({ item }) => (
            <ListItem
              roundAvatar
              title={item.title}
              subtitle={item.subtitle}
              avatar={item.avatar}
              containerStyle={{ borderBottomWidth: 0 }}
              onPress={function goes here}
            />
          )}
          keyExtractor={item => item.id}
          ItemSeparatorComponent={this.renderSeparator}
          ListHeaderComponent={this.renderHeader}
          ListFooterComponent={this.renderFooter}
          onRefresh={this._handleRefresh}
          refreshing={this.state.refreshing}
          onEndReached={this._handleLoadMore}
          onEndReachedThreshold={0.3}
        />
      </List>
    );
  };

...想通了。

this._handleLoadMore在状态被过滤后立即触发...并从 API 获取了更多结果以添加到状态

相关内容

  • 没有找到相关文章

最新更新