中写到,但我无法从Header.js访问这些信息。我搜索了所有地方,找不到">
我想将API接收的对象的值从一个组件移动到另一个组件。我想使用"countryInfo.todayCases"内部的SubCard组件在App.js文件中作为支柱。例如,它在App.js <SubCard title="Cases" cases={countryInfo.todayCases} total={2000} />
中写到,但我无法从Header.js
访问这些信息。我搜索了所有地方,找不到和我的情况类似的东西。我们非常感谢你的帮助。
App.js
import Header from "./components/Header";
import SubCard from "./components/SubCard";
function App() {
return (
<div className="app">
<div className="app__left">
<Header />
<div className="app__stats">
<SubCard title="Cases" cases={_cases} total={2000} />
<SubCard title="Recovered" cases={4000} total={2000} />
<SubCard title="Deaths" cases={4000} total={2000} />
</div>
<Map />
</div>
<div className="app__right_bar">
<SideBar />
{/* Graph */}
</div>
</div>
);
}
export default App;
Header.js
function Header({ _cases, _recovered, _deaths }) {
const [countries, setCountries] = useState([]);
const [country, setCountry] = useState("worldwide");
const [countryInfo, setCountryInfo] = useState({});
const _cases = countryInfo.todayCases;
const _recovered = countryInfo.todayRecovered;
const _deaths = countryInfo.todayDeaths;
useEffect(() => {
// async -> send a request, wait for it and do something
const getCountriesData = async () => {
await fetch(`${COUNTRIES_URL}`)
.then((response) => response.json())
.then((data) => {
const countries = data.map((country) => ({
name: country.country, //country name ex United Kingdom
value: country.countryInfo.iso2, // country code ex: UK
}));
setCountries(countries);
});
};
getCountriesData();
}, []);
const onCountryChange = async (event) => {
const countryCode = event.target.value;
setCountry(countryCode);
const url =
countryCode === "worldwide"
? WORLDWIDE_URL
: `${COUNTRIES_URL}/${countryCode}`;
await fetch(url)
.then((response) => response.json())
.then((data) => {
setCountry(countryCode);
setCountryInfo(data);
});
};
console.log("Country info here >>>", countryInfo);
return (
<div className="app__header">
<h1>Covid 19 tracker</h1>
<FormControl className="app__dropdown">
<Select variant="outlined" onChange={onCountryChange} value={country}>
<MenuItem value="worldwide">Worldwide</MenuItem>
{countries.map((country) => (
<MenuItem value={country.value}>{country.name}</MenuItem>
))}
</Select>
</FormControl>
</div>
);
}
export default Header;
SubCard.js
function SubCard({ title, cases, total }) {
return (
<div>
<Card className="sub_card">
<CardContent>
{/*Title */}
<Typography color="primary">{title}</Typography>
{/*Number of Cases */}
<h2 className="card_cases">{cases}</h2>
{/*Total */}
<Typography className="card_total" color="textSecondary">
{total} Total
</Typography>
</CardContent>
</Card>
</div>
);
}
export default SubCard;
发布于 2021-01-26 17:46:02
看来应用程序调用标头和子卡
/-> Header
App ->
\-> SubCard
为了让道具通过每个组件,有三个选项:
将共享数据移动到父级
如果将共享数据移动到父级(App),则可以将该数据作为支持与两个子级共享。
父母>孩子> GrandChild
更改组件,以便数据通过来自父>子> GrandChild的道具向下流动。那么组件的顺序将是
App ->标头-> SubCard
反应语境
您可以使用反应语境创建一个全局变量,以便在组件之间共享。
使用这三个选项中的任何一个,您都需要重新平衡代码在组件之间的布局方式。
https://stackoverflow.com/questions/65911606
复制相似问题