我想在图表上显示来自API的数据,我知道如何做,但在使用.map函数时出现错误。我想将prices[0]和prices[1]分开,以便可以访问它们,因为我的响应看起来像这样:
"prices": [ [ 1689598842536, 30208.47 ], [ 1689602431443, 30274.72 ],
这是带有.map函数的代码:
const params = useParams() const [coin, setCoin] = useState({}) const [chart, setChart] = useState({}) const [loading, setLoading] = useState(false) const chartUrl = `https://api.coingecko.com/api/v3/coins/${params.coinId}/market_chart?vs_currency=usd&days=30&precision=2` const url = `https://api.coingecko.com/api/v3/coins/${params.coinId}` useEffect(() => { axios.get(url).then((res) => { setCoin(res.data) setLoading(true) }).catch((error) => { console.log(error) }) axios.get(chartUrl).then((res) => { setChart(res) }).catch((error) => { console.log(error) }) }, []) const coinChartData = chart.prices.map(value => ({x: value[0], y: value[1]}))
我在最后一行得到了错误 Cannot read properties of undefined (reading 'map')
我尝试将coinChartData放在useEffect内部,它可以工作,但我无法在useEffect函数之外使用coinChartData。
初始值为
chart
的是一个空对象:该对象没有
prices
属性,所以正如错误所述,chart.prices
是undefined
。你可以将该属性初始化为空数组:
或者在访问可能为
undefined
的属性时使用可选链:根据最终使用数据的位置/方式,您可能还有其他选项。但无论如何,如果对象可能没有
prices
属性,那么您不能总是使用该属性。您需要确保该属性始终存在,或者在尝试使用之前以某种方式有条件地检查它是否存在。