이것은 에러는 아니지만 잊혀질 것 같아서 기록...
👁 Error 사진
-
👀 Error 이름
-
🫀 Error 원인
프라미스 객체라서 데이터를 가져올 수 없음
⚡️ Error 해결방법
async await으로 리턴 값을 반환할 것
async function abc () {
const result = await ...;
return result;
}
'Error > React' 카테고리의 다른 글
global is not defined error (0) | 2022.10.10 |
---|---|
React Uncaught TypeError: Cannot read properties of undefined (0) | 2022.06.26 |
React map()함수 사용할 때 겪는 error 모음 (0) | 2022.06.19 |