이 글은, 노마드코더의 "ReactJS로 영화 웹 서비스 만들기"를 공부한 내용을 수강자 입장에서 필기한 것으로,
다소 불친절한 설명이 있을 수 있음을 미리 알립니다.
1. API로부터 Movie List를 가져오기 위해 axios 설치
npm install axios
2. import axios
import axios from "axios";
3. axios.get("url")
getMovies = async () => {
const movies = await axios.get("https://yts-proxy.now.sh/list_movies.json");
};
async
axios의 속도가 느릴 것이니 기다리라는 의미.- 기다릴 대상을 지정해주는
await
'JavaScript > React' 카테고리의 다른 글
#4.2. Styling the movies (0) | 2020.07.29 |
---|---|
React Axios로 API에서 받아온 데이터 확인 # 4.1. Rendering the Movies (0) | 2020.06.29 |
#3.2. Component Life Cycle (0) | 2020.06.29 |
React의 Class Component와 State #3.0. Class Components and State (0) | 2020.06.29 |
React PropTypes 사용법: #2.4 Protection with PropTypes (0) | 2020.06.29 |