Fetch 정리. 2
·
웹개발 기초정리(프엔)
Fetch 통신의 결과 값을 이용해보기 (OpenAPI 이용) fetch("http://spartacodingclub.shop/sparta_api/seoulair") .then(res => res.json()) .then(data => { console.log(data['RealtimeCityAir']['row'][0]); }) 반복문으로 구 데이터를 출력해보기 fetch("http://spartacodingclub.shop/sparta_api/seoulair") // 기본 요청(GET) .then(res => res.json()) // 요청해서 받은 데이터를 JSON화 .then(data => { // JSON화 한 데이터를 다시 data로 이름짓기 let rows = data['Realtime..