I have created Context API I am trying to fetch the data from my API so I can use the state globally, but is not doing it. I am not getting any errors in the console. But when I try to fetch from the Other Component, I am getting data in the console. Just in the Context, I am not getting it.
JavaScript
x
44
44
1
import React, {useState, useEffect}from 'react'
2
import ITrucks from '../interface/truck';
3
import axios from 'axios';
4
5
export const TrucksContext= React.createContext({})
6
7
export const TrucksProvider:React.FC = ({ children } ) => {
8
9
const [isLoading, setIsLoading] = useState(false);
10
const [trucks, setTrucks] =useState<ITrucks[]>([])
11
const [isError, setIsError] = useState(false);
12
const fetchData = () => {
13
axios
14
.get('https://localhost:7000/trucks')
15
.then((response) => {
16
setIsLoading(false);
17
setTrucks(response.data);
18
console.log(response.data)
19
})
20
.catch((error) => {
21
setIsLoading(false);
22
setIsError(true);
23
console.log(error);
24
});
25
};
26
useEffect(() => {
27
fetchData();
28
}, []);
29
30
31
32
return (
33
34
35
<TrucksContext.Provider
36
value={{trucks}}
37
>
38
<>
39
{children}
40
</>
41
</TrucksContext.Provider>
42
);
43
}
44
Advertisement
Answer
try setTrucks([...response.data])