React - fetch
API를 느져오는 React 기능. fetch
url에서 fetch를 사용하여 json 정보를 끌어와 보여줌.
fetch("url")
.then((response) => response.json())
.then((data) => console.log(data));
화면에 뿌려줄 때, useState와 map 기능을 사용하여 진행하려는데 마음대로 되지 않아 시도중.. 성공 후 업데이트 하려합니다.
API를 느져오는 React 기능. fetch
url에서 fetch를 사용하여 json 정보를 끌어와 보여줌.
fetch("url")
.then((response) => response.json())
.then((data) => console.log(data));
화면에 뿌려줄 때, useState와 map 기능을 사용하여 진행하려는데 마음대로 되지 않아 시도중.. 성공 후 업데이트 하려합니다.