큰 틀에서의 원인은 비동기 처리가 안되어 데이터를 못불러온 상태이며 그에 대한 원인은 다양할 것이다. 나의 경우에는 axios 와 같은 서버 통신 요청을 볼 때, 필요한 인자값이 undefined 라든지 등이 원인이었다. Possible Unhandled Promise Rejection (id: n): axios 호출할 때 then. 다음에 catch로 예외 처리를 추가하여 에러 핸들링으로 해결하였다. .catch(error => { if (error.response) { // 요청이 이루어졌으며 서버가 2xx의 범위를 벗어나는 상태 코드로 응답했습니다. console.log(error.response.data) console.log(error.response.status) console.log(erro..