📅  最后修改于: 2022-03-11 15:04:07.658000             🧑  作者: Mango
const GetData = [];
useEffect(() => {
fetch(API_URL)
.then((res) => res.json())
.then((data) => {
GetModesData.push(...data);
setDataState(GetData.map((d) => d.modeName));
});
}, []);