๋ฐ์ํ
axios๋ response.data๋ก ๋ฐ๊ณ , fetch๋ response.json()์ผ๋ก ๋ฐ๋๋ค!
axios
useEffect(() => {
axios
.get("http://localhost:3001/user")
.then((response) => response.data)
.then((item) => setUserData(item));
}, []);
fetch
useEffect(() => {
fetch(`http://localhost:3001/user/`)
.then((response) => response.json())
.then((item) => setUserData(item));
}, []);
๐ ์๋ชป๋ ๊ฐ๋ ์ ๋ฌ์ด ์๋ค๋ฉด ๋๊ธ ๋ถํ๋๋ฆฝ๋๋ค. ์ ์ ์ฑ์ฅ์ ํฐ ๋์์ด ๋ฉ๋๋ค๐ค
๋ฐ์ํ