본문 바로가기

CodeIt_Sprint/자바스크립트_Request보내기8

(4)자바스크립트_리퀘스트_API.js 만들기 ≠ API 만들기 ● 이론0_GET 리퀘스트 복습○ API 데이터 GET 하여, 출력 해보기- js 코드 :const url = new URL('https://learn.codeit.kr/api/color-surveys');const res = await fetch(url);const data = await res.json();console.log(data); - 출력 결과 :{ count: 40, next: 'https://learn.codeit.kr/api/color-surveys/?offset=10&limit=10', previous: null, results: [ { createdAt: 1733540117000, updatedAt: 1733540117000, colorCode.. 2024. 12. 7.
(3)자바스크립트_리퀘스트_Get 리퀘스트 => fetch() : API 데이터 불러오기 vs POST 리퀘스트 => fetch(url , 추가할 데이터 객체) : API 데이터에 요소 추가 (작성중) ● 이론0_GET 리퀘스트 복습○ 요약 :url 객체 url 객체.searchParams,append() + offset , limit , 개수또는 특정 데이터 프로퍼티에 대한 값의 데이터만 추출 => url/?특정프로퍼티 = 값const res = await fetch(url); , const data = await res.json(); , console.log(data);const url = new URL('https://learn.codeit.kr/api/color-surveys');url.searchParams('offset',10);url.searchParams('limit',10);const res = await fetch(url);const data = await res.json();cons.. 2024. 12. 6.
(2)자바스크립트_리퀘스트_ Get 리퀘스트 방법=>await + fetch() // 나중에 요약 정리 작성해보자 ● 이론1_API 데이터의 Body의 출력 구성○ count , next, previous ,result { count: 357, next: 'https://learn.codeit.kr/api/color-surveys/?offset=10&limit=10', previous: null, results: [ { createdAt: 1733330621000, updatedAt: 1733330621000, colorCode: '#ABCD00', id: 369, mbti: 'INFP' }, .... { createdAt: 1732967649000, updatedAt: 1732967709000, colorCo.. 2024. 12. 6.
(1)자바스크립트_리퀘스트_fetch()메소드 복습, API의 구성 => status, headers,body, body의 내용 Destructure문법으로 부분추출 ● 이론0_fetch('API URL')로 변수에 데이터 저장하기○ 순서 요약 :순서1_ [package.json] 생성 후, 아래의 코드 작성 => import , export 문법과 await 문법 작성을 위한 셋팅 작업이다.- [package.json]{ "type" : "module"} 순서2_ [mainjs]에서 res변수에 API 데이터를 불러와 저장한다. => await, fetch()const res = await fetch('https://learn.codeit.kr/api/color-surveys');\console.log(res);- 출력결과 : ● 이론1_ API 데이터 분석하기 //많은 것들이 들어있지만, 중요한 부분은 3가지=> status , headers, body○ stat.. 2024. 12. 6.