JavaScript
x
89
89
1
import { useState , useEffect} from "react";
2
import 'semantic-ui-css/semantic.min.css'
3
import { Header, Button , Container, Image} from 'semantic-ui-react'
4
import dotalLogo from './dota2.png'
5
6
import React from "react";
7
import Loading from './loading'
8
const dataUrl = 'https://api.opendota.com/api/heroStats'
9
10
function App() {
11
const [loading, setLoading] = useState(false)
12
const [data, setData] = useState([])
13
const [index, setIndex] = useState(0)
14
15
const fecthApi = async () => {
16
setLoading(true)
17
try {
18
const fetched = await fetch(dataUrl)
19
const parsed = await fetched.json()
20
setData(parsed)
21
setLoading(false)
22
23
} catch (error) {
24
console.log('error')
25
setLoading(false)
26
}
27
}
28
29
useEffect(()=>fecthApi(),[])
30
if (loading){
31
return <Loading />
32
}
33
34
function nextBtn(e) {
35
e.preventDefault()
36
setIndex((prev)=>prev+1)
37
}
38
39
function backBtn(e) {
40
e.preventDefault()
41
setIndex((prev)=>prev-1)
42
}
43
44
return (
45
<>
46
<main id="main-content">
47
<Container>
48
<Header className='headings' as='h1' size='medium' style={{fontSize: 40}}>
49
<img className="dota-logo" src={dotalLogo} alt="" />
50
<Header.Content className="dota-header">Dota 2</Header.Content>
51
</Header>
52
<br />
53
<Container className='middle-layer'>
54
55
<Button
56
onClick={(e)=> nextBtn(e)}
57
className='change-btn-one'
58
content='Back'
59
icon='arrow left'
60
labelPosition='left' />
61
62
<Image
63
className='dota-img'
64
src={"https://api.opendota.com" + data[index].img}
65
rounded
66
alt='err'
67
bordered
68
centered/>
69
70
<Button
71
onClick={(e)=> backBtn(e)}
72
className='change-btn-two'
73
content=' Next '
74
icon='arrow right'
75
labelPosition='right' />
76
77
</Container>
78
</Container>
79
<Container>
80
<p>{data[index].localized_name}</p>
81
</Container>
82
<div className="contain"></div>
83
</main>
84
</>
85
);
86
}
87
88
export default App;
89
I get an error after compiling it but I have defined it and fetch the data using async await but get a
TypeError: data[index] is undefined
I have stuck for several hours and still come out with no solution. Furthermore, I have tried to destructed it but still get the same error. Using data.map()
works, but I only want to display one hero data at a time, and using map would load 120 hero data.
I understand this is kinda a dumb question, but I just can’t figure it out 🙂
Advertisement
Answer
data[index] is undefined before fetching ended. So, data[index].localized_name will gives you error. you can write it like this.
JavaScript
1
2
1
data[index] && data[index].localized_name
2