전체 글66 [React Error] is assigned a value but never used. 'UPLOAD_FILE'이(가) 선언은 되었지만 해당 값이 읽히지는 않았습니다. . . . export export export export.....!!! 2022. 2. 8. [React Error] error - Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: object. You likely forgot to export your component from the file it's defined in, or you might have.. 오늘도 어김없이 에러가 났다. 에러문구는 다음과 같다. error - Error: Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: object. You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports. export 또는 import를 안해줬거나 default를 빼먹은 모양인데 광활한 컴포넌트들 속에서 하나하나 찾아봤다. 나의 경우는 페이지네이션 하려고 컴포넌트 빼.. 2022. 2. 8. [TIL] 4주차 - 5. 이미지 파일 업로드 이미지 프로세스 이해 (이미지 서버, 스토리지 포함) 이미지 프로세스를 이해하기 위해서는 storage 사용을 알아야 합니다. storage 또한 컴퓨터이며 여러 컴퓨터들을 연결시켜 놓은 큰 용량을 담을 수 있는 데이터베이스 입니다. 이미지 파일 업로드 시 데이터 베이스에는 이미지 파일이 저장된 주솟값이 들어가며 실제 저장되는 위치는 storage입니다. uploadFile 이라는 api가 있을때, 파일을 선택하고 uploadFile을 요청하게 될 경우, backend에서 storage로 파일을 전송하게 됩니다. 우리가 이미지를 보기 위해서는 주소를 사용해 접근하게 됩니다. 즉, storage에서는 backend로 이미지 주소를 넘겨주게 되며 이 주소를 다시 front에게 주게 됩니다. 우리는 이 주소를.. 2022. 2. 8. [TypeError] error - TypeError: Cannot read properties of undefined (reading 'fetchBoards') 문제상황 페이지 네이션 연습 중 다음과 같은 에러가 떴다. 브라우저상 에러 Server Error TypeError: Cannot read properties of undefined (reading 'fetchBoards') This error happened while generating the page. Any console logs will be displayed in the terminal window. 터미널 에러 error - TypeError: Cannot read properties of undefined (reading 'fetchBoards') undefined에 대한 속성을 읽을 수 없다고 한다. 해결 이유는 페치보드할 시에 값이 없을 수도 있는데 불러오려 그래서인듯 하다. 있을 수도.. 2022. 2. 7. 이전 1 ··· 5 6 7 8 9 10 11 ··· 17 다음