코드 그라데이션
API 호출하기 본문
API란?
예시
let response = fetch("https://jsonplaceholder.typicode.com/posts").then((res) => {
console.log(res);
})
조금 더 세련되게 json 형식으로 가져와보겠다.
async function getData() {
let rawResponse = await fetch("https://jsonplaceholder.typicode.com/posts");
let jsonResponse = await rawResponse.json(); // json 형태로 반환
console.log(jsonResponse);
}
getData();
728x90
'Front > Mega-JavaScript' 카테고리의 다른 글
Node와 모듈 (0) | 2024.04.14 |
---|---|
async, await (0) | 2024.04.13 |
콜백 지옥을 탈출하는 Promise (0) | 2024.04.12 |
동기와 비동기 (0) | 2024.04.12 |
조건문 업그레이드 (0) | 2024.04.11 |
Comments