React_fetchCat_API
오픈 API를 받아오는 소스
const fetchCat = async (text) => {
const OPEN_API_DOMAIN = "https://cataas.com";
const response = await fetch(`${OPEN_API_DOMAIN}/cat/says/${text}?json=true`);
const responseJson = await response.json();
return `${OPEN_API_DOMAIN}/${responseJson.url}`;
};
해석
오픈API를 받아오는 도메인 주소
fetch 도메인의 cat/says/ 입력대사를 넣고 제이슨으로 받아와라
가져온 제이슨 데이터를 이미지만 빼와서 리턴을 해준다
Author And Source
이 문제에 관하여(React_fetchCat_API), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@rladmsql710/ReactfetchCatAPI저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)