react api 사용하기

박지윤·2022년 8월 19일
0
post-custom-banner
const getData = async()=>{
   const res = await fetch('https://jsonplaceholder.typicode.com/comments/').then((res)=>res.json())
   const initData = res.slice(0,20).map((it)=>{
     return {
       author : it.email,
       content: it.body,
       created_date : new Date().getTime(),
       id: dataId.current++
      }
   })
  • JSONPlaceholder 에서 api를 사용하여 데이터를 가져왔다.
  • comment 데이터는 불러오니 500개가 나와서 20개로 끊어주었다.
  • new Date() : 특정한 시간을 나타내는 객체를 생성한다.
  • getTime() : 표준시에 따라 지정된 날짜의 시간에 해당하는 값을 반환
  • 생략된 코드들이 있지만 JS에서 API를 사용하는 방법과 현재로서는 크게 다를 것은 없어 보인다.
profile
화이팅~
post-custom-banner

0개의 댓글