在尝试设置用于显示在图表上的数据时,React .map不起作用
P粉277464743
2023-08-17 11:56:29
<p>我想在图表上显示来自API的数据,我知道如何做,但在使用.map函数时出现错误。我想将prices[0]和prices[1]分开,以便可以访问它们,因为我的响应看起来像这样:</p>
<pre class="brush:php;toolbar:false;">"prices": [
[
1689598842536,
30208.47
],
[
1689602431443,
30274.72
],</pre>
<p>这是带有.map函数的代码:</p>
<pre class="brush:php;toolbar:false;">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]}))</pre>
<p>我在最后一行得到了错误 <code>Cannot read properties of undefined (reading 'map')</code></p>
<p>我尝试将coinChartData放在useEffect内部,它可以工作,但我无法在useEffect函数之外使用coinChartData。</p>
初始值为
chart
的是一个空对象:该对象没有
prices
属性,所以正如错误所述,chart.prices
是undefined
。你可以将该属性初始化为空数组:
或者在访问可能为
undefined
的属性时使用可选链:根据最终使用数据的位置/方式,您可能还有其他选项。但无论如何,如果对象可能没有
prices
属性,那么您不能总是使用该属性。您需要确保该属性始终存在,或者在尝试使用之前以某种方式有条件地检查它是否存在。