[FETCH]fetch API
여러 웹사이트에서 해당 정보만 불러 업데이트 하기 위해 특정 URL로부터 정보를 받아오는 역할을 한다.
기본형태
let url = "https://koreanjson.com/posts/1";
fetch(url)
.then((response) => response.json())
.then((json) => console.log(json))
.catch((error) => console.log(error));
댓글남기기