我有一个搜索栏,它更新了this.state.data
,它可以为我的FlatList提供信息。
当我在SearchBar中输入诸如tttt之类的信息时,.. this.state.data
被更新为一个空数组....并且您在console.log('Populating flatview with:' + this.state.data);
下看到的console.log显示该数组已被清空。 ..但是FlatList不会更改以反映这一点。
this.state.data
肯定会更改为空数组,但FlatList不会刷新。
有什么想法吗? 预先感谢
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>
);
};
答案 0 :(得分:0)
...把它弄清楚了。
this._handleLoadMore
在过滤状态后立即触发...并从API提取了更多结果以添加到状态