我的flatList显示了2个项目,如果我搜索文本,它将显示该项目。但是现在,当我开始单击退格键并删除搜索文本时,其他项目不再显示,而是仍显示在上一个项目上。
我的下面的代码:
Strings
搜索过滤器可以工作,但是一旦我开始清除搜索文本,我的户口清单就应该重新呈现为其初始状态。请检查我的代码,让我知道怎么了。
答案 0 :(得分:0)
问题在于,当您过滤列表时,会丢失初始完整列表中的元素。解决方案是在状态中声明2个变量:1保存所有元素,另2个过滤搜索
export default class HomeComponent extends Component {
constructor(props){
super(props)
this.state = {
isLoading: true,
allNotifications: [],
filteredNotifications: [],
query: ''
}
};
componentDidMount() {
fetch('https://140xya6a67.execute-api.ap-southeast-1.amazonaws.com/dev/', {
method: 'GET',
})
.then((response) => response.json())
.then((responseJson) => {
this.setState({
isLoading: false,
allNotifications: responseJson,
filteredNotifications: responseJson,
notificationRead: false
})
})
};
goToDetails() {
return this.props.navigation.navigate(Details) ;
}
renderItem({item}) {
return <NotificationItem item={item}
onPress = {()=> {this.goToDetails()}}
/>
}
handleSearch(text){
const newData = _.filter(this.state.allNotifications, (item) => {
const itemData = item.OrderDate ? item.OrderDate.toUpperCase() : ''.toUpperCase();
const textData = text.toUpperCase();
return itemData.indexOf(textData) > -1;
});
this.setState({
filteredNotifications: newData,
query:text,
});
}
renderContent() {
let {filteredNotifications} = this.state;
return (
<View>
<SearchBar placeholder='type here...' lightTheme round value={this.state.query} onChangeText={(text)=>{this.handleSearch(text)}} />
<FlatList
keyExtractor={(item, id) => item.id}
data={filteredNotifications}
renderItem={this.renderItem.bind(this)}
/>
</View>
);
}
render () {
let {fill, container} = styles;
return (
<View style={ [fill, container] }>
{this.renderContent()}
</View>
);
}
}