我正在使用 react native 和 expo。我在屏幕 (iOS) 模拟器上有一些从 API 获取的 JSON 数据。在顶部,我有一个搜索栏,用户可以在其中搜索屏幕上显示的数据。
例如,如果数据是
一个
一家公司
乙
公司
A 是公司符号,a company
是符号名称。所以当用户输入 A 时它应该显示A
公司,如果用户输入Z
它应该显示Z
公司。
我的代码:
import React, { useState, useEffect } from "react";
import {
StyleSheet,
View,
TouchableWithoutFeedback,
Keyboard,
FlatList,
TextInput,
Button,
Text,
} from "react-native";
import { useStocksContext } from "../contexts/StocksContext";
import { scaleSize } from "../constants/Layout";
import { Ionicons } from "@expo/vector-icons";
import { ListItem } from "react-native";
export default function SearchScreen({ navigation }) {
const { ServerURL, addToWatchlist } = useStocksContext();
const [state, setState] = useState({
/* initial state here */
myListData: [],
search: "",
});
useEffect(() => {
renderWithData();
// FixMe: fetch symbol names from the servner and save in local SearchScreen state
}, []);
updateSearch = (event) => {
setState({ search: event.target.value });
};
renderWithData = () => {
return fetch("http://131.181.190.87:3001/all")
.then((res) => res.json())
.then((json) => {
setState({
isLoaded: true,
myListData: json,
});
setTimeout(() => {
console.log(state.myListData);
}, 10000);
});
};
let filteredItems = state.myListData.filter((item) => {
return (
item.symbol.toUpperCase().indexOf(state.search.toUpperCase()) !== -1 ||
item.name.indexOf(state.search) !== -1
);
});
let movies = state.myListData.filteredItems.map((val) => {
return (
<View key={val.symbol} style={styles.text}>
<Text style={styles.text}>{val.symbol}</Text>
<Text style={styles.text}>{val.name}</Text>
</View>
);
});
return (
<TouchableWithoutFeedback onPress={Keyboard.dismiss}>
<View style={styles.container}>
<TextInput
style={styles.textinput}
placeholder="Search here"
placeholderTextColor="white"
value={state.search}
onChange={updateSearch.bind()}
/>
<Text>csdn</Text>
<View style={styles.text}>{movies}</View>
</View>
</TouchableWithoutFeedback>
);
}
const styles = StyleSheet.create({
textinput: {
color: "white",
height: "20",
fontSize: 18,
},
text: {
color: "white",
backgroundColor: "black",
},
flatstuff: {
color: "white",
},
// use scaleSize(x) to adjust sizes for small/large screens
});
我不确定我做错了什么,但是如果我在 textinput 上输入内容,它不会显示任何内容(更像是搜索内容不起作用)并且我的数据仍然显示在屏幕上,除非我无法搜索它使用文本输入。有人可以帮助我吗?
编辑:json 数据
目的 {
"name": "Chesapeake Energy",
"symbol": "CHK",
}, 目的 {
"name": "C. H. Robinson Worldwide",
"symbol": "CHRW",
},