react-native:如何使用自动完成功能进行搜索过滤。这是我的样品

时间:2018-09-29 06:54:47

标签: javascript react-native

我选择输入,然后它还会显示相关文本以解决此问题。请帮助我

this result I got

I want this result

这是我尝试过的

 fetch('http://sample/?keyword='+searchText+'')
 .then(res => res.json())
 .then(async (json) => {
    const { contactList: data } = json;
    this.setState({ data });
 });
 const { data } = this.state;
 const regex = new RegExp(`${searchText.trim()}`, 'i');
 return data.filter(item => item.Name.search(regex) > -1);

0 个答案:

没有答案