const fetchData = async () => { // 현재 상영중인 영화 정보를 가져오기 (여러영화) const request = await axios.get(requests.fetchNowPlaying); console.log(request); //0번째 영화의 id만 가져오기 const movieID = request.data.results[0].id; console.log(movieID); //0번째 영화의 상세정보 가져오기 const {data: movieDetail} = await axios.get(`movie/${movieID}`) console.log(movieDetail) }; axios는? Axios는 브라우저, Node.js를 위한 Promise API를 활용하는 HTTP 비동..