async/await

문혜민·2022년 3월 20일
0

정보데이터를 받아올때에

    const CallGraphqlApi = () => {

    const result = callApi({
      variables : {writer : "문문", title : "제목", contents : "콘텐츠" }
    })
   
    console.log(result)
	 }
     

를 하게 되면 언디파인드가 나오게된다.
아직 callApi기능이 데이터를 가져오지못한채 result값에 들어가 콜솔로 표현되기 때문!!

이때 사용하는것이 anync와 await이다(정보를기다렸다가 받으면 담는다)
둘이서 셋트!!

사용해서 표현하면 다음과 같다

  const CallGraphqlApi =  async() => {
          const result = await callApi({
            variables : {writer : "문문", title : "제목", contents : "콘텐츠" }
          })
          console.log(result)
   }
profile
프론드엔드 06

0개의 댓글